()
| 10 | |
| 11 | interface ObservableLikeSubscription { |
| 12 | unsubscribe(): any |
| 13 | } |
| 14 | interface ObservableLike<T> { |
| 15 | subscribe(onNext: (value: T) => any, onError?: (error: any) => any, onComplete?: () => any): ObservableLikeSubscription |
no outgoing calls
no test coverage detected