Sha256: 23034cec2082c6d14d7e9e58ac38ee613bf780c170feabb9c70c6b4a84f37eed
Contents?: true
Size: 802 Bytes
Versions: 49
Compression:
Stored size: 802 Bytes
Contents
import { Observable, SubscribableOrPromise } from '../Observable'; import { Subscriber } from '../Subscriber'; import { TeardownLogic } from '../Subscription'; /** * We need this JSDoc comment for affecting ESDoc. * @extends {Ignored} * @hide true */ export declare class IfObservable<T, R> extends Observable<T> { private condition; private thenSource; private elseSource; static create<T, R>(condition: () => boolean | void, thenSource?: SubscribableOrPromise<T> | void, elseSource?: SubscribableOrPromise<R> | void): Observable<T | R>; constructor(condition: () => boolean | void, thenSource?: SubscribableOrPromise<T> | void, elseSource?: SubscribableOrPromise<R> | void); /** @deprecated internal use only */ _subscribe(subscriber: Subscriber<T | R>): TeardownLogic; }
Version data entries
49 entries across 49 versions & 4 rubygems