UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

6 lines (5 loc) 575 B
import { IObservable } from '../../../../../../type/observable.type'; import { IThenObservableInNotifications } from '../../then-observable'; import { IThenObservableOnRejected } from '../../then-observable-on-rejected.type'; import { IRejectedObservableOutNotifications } from './rejected-observable-out-notifications.type'; export declare function rejectedObservable<GInNextValue, GOut>(subscribe: IObservable<IThenObservableInNotifications<GInNextValue>>, onRejected: IThenObservableOnRejected<GOut>): IObservable<IRejectedObservableOutNotifications<GInNextValue, GOut>>;