@lifaon/rx-js-light
Version:
Blazing fast Observables
6 lines (5 loc) • 323 B
TypeScript
import { IObservable } from '../../../../../type/observable.type';
/**
* WARN use with caution: it's possible that you subscribe twice to the same Iterator, in this case the emitted values probably won't be what you expect
*/
export declare function fromIterator<GValue>(iterator: Iterator<GValue>): IObservable<GValue>;