@lifaon/rx-js-light
Version:
Blazing fast Observables
7 lines (6 loc) • 355 B
TypeScript
import { IObserverPipe } from '../../../../../../observer/pipes/type/observer-pipe.type';
import { IObservablePipe } from '../../../../type/observable-pipe.type';
/**
* Converts an observer pipe to an observable pipe
*/
export declare function observerPipeToObservablePipe<GIn, GOut>(observerPipe: IObserverPipe<GIn, GOut>): IObservablePipe<GIn, GOut>;