mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
802 B
16 lines
802 B
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;
|
|
}
|
|
|