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