(observable: Observable<T>, handler: (v: T) => void)
| 26 | } |
| 27 | |
| 28 | subscribe <T> (observable: Observable<T>, handler: (v: T) => void): void { |
| 29 | this.subscriptions.push(observable.subscribe(handler)) |
| 30 | } |
| 31 | |
| 32 | cancelAll (): void { |
| 33 | for (const s of this.subscriptions) { |
no test coverage detected