projecte_ionic/node_modules/rxjs/internal/util/subscribeToObservable.d.ts
2022-02-09 18:30:03 +01:00

8 lines
298 B
TypeScript
Executable file

import { Subscriber } from '../Subscriber';
/**
* Subscribes to an object that implements Symbol.observable with the given
* Subscriber.
* @param obj An object that implements Symbol.observable
*/
export declare const subscribeToObservable: <T>(obj: any) => (subscriber: Subscriber<T>) => any;