This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/rxjs/internal/util/subscribeToObservable.d.ts

8 lines
298 B
TypeScript

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;