minor adjustment to readme
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / util / subscribeToObservable.d.ts
1 import { Subscriber } from '../Subscriber';
2 /**
3  * Subscribes to an object that implements Symbol.observable with the given
4  * Subscriber.
5  * @param obj An object that implements Symbol.observable
6  */
7 export declare const subscribeToObservable: <T>(obj: any) => (subscriber: Subscriber<T>) => any;