UNPKG

488 BTypeScriptView Raw
1import { Observable } from '../Observable';
2import { Subscribable } from '../types';
3/**
4 * Used to convert a subscribable to an observable.
5 *
6 * Currently, this is only used within internals.
7 *
8 * TODO: Discuss ObservableInput supporting "Subscribable".
9 * https://github.com/ReactiveX/rxjs/issues/5909
10 *
11 * @param subscribable A subscribable
12 */
13export declare function fromSubscribable<T>(subscribable: Subscribable<T>): Observable<T>;
14//# sourceMappingURL=fromSubscribable.d.ts.map
\No newline at end of file