| 9 | import { TransferDescriptor } from "../transferable" |
| 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 |
| 16 | subscribe(listeners: { |
no outgoing calls
no test coverage detected