mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-16 23:33:38 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
16
node_modules/rxjs/observable/IfObservable.d.ts
generated
vendored
Normal file
16
node_modules/rxjs/observable/IfObservable.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user