@lifaon/rx-js-light
Version:
Blazing fast Observables
6 lines (5 loc) • 583 B
TypeScript
import { IObservable } from '../../../../../../type/observable.type';
import { IThenObservableInNotifications } from '../../then-observable';
import { IThenObservableOnFulfilled } from '../../then-observable-on-fulfilled.type';
import { IFulfilledObservableOutNotifications } from './fulfilled-observable-out-notifications.type';
export declare function fulfilledObservable<GInNextValue, GOut>(subscribe: IObservable<IThenObservableInNotifications<GInNextValue>>, onFulfilled: IThenObservableOnFulfilled<GInNextValue, GOut>): IObservable<IFulfilledObservableOutNotifications<GOut>>;