(next?: (value: T) => void, error?: (err: any) => void, complete?: () => void)
| 50 | */ |
| 51 | export interface Observable<T> { |
| 52 | subscribe(next?: (value: T) => void, error?: (err: any) => void, complete?: () => void): Subscription; |
| 53 | } |
| 54 | |
| 55 | /** |
no outgoing calls
no test coverage detected