@lifaon/rx-js-light
Version:
Blazing fast Observables
6 lines (5 loc) • 539 B
TypeScript
import { IObservablePipe } from '../../../type/observable-pipe.type';
import { IThenObservableInNotifications } from './then-observable';
import { IThenObservableOnFulfilled } from './then-observable-on-fulfilled.type';
import { IThenObservableOnRejected } from './then-observable-on-rejected.type';
export declare function thenObservablePipe<GInNextValue, GOut>(onFulfilled: IThenObservableOnFulfilled<GInNextValue, GOut>, onRejected: IThenObservableOnRejected<GOut>): IObservablePipe<IThenObservableInNotifications<GInNextValue>, GOut>;