(tips$: Observable<string>)
| 21 | |
| 22 | @Effect() |
| 23 | showTipsWithEffectAction(tips$: Observable<string>): Observable<EffectAction> { |
| 24 | return tips$.pipe(map((tips) => this.getActions().showTipsWithReducer(tips))) |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | interface CountState { |
no test coverage detected