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:
43
node_modules/rxjs/Subject.d.ts
generated
vendored
Normal file
43
node_modules/rxjs/Subject.d.ts
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
import { Operator } from './Operator';
|
||||
import { Observer } from './Observer';
|
||||
import { Observable } from './Observable';
|
||||
import { Subscriber } from './Subscriber';
|
||||
import { ISubscription, Subscription, TeardownLogic } from './Subscription';
|
||||
/**
|
||||
* @class SubjectSubscriber<T>
|
||||
*/
|
||||
export declare class SubjectSubscriber<T> extends Subscriber<T> {
|
||||
protected destination: Subject<T>;
|
||||
constructor(destination: Subject<T>);
|
||||
}
|
||||
/**
|
||||
* @class Subject<T>
|
||||
*/
|
||||
export declare class Subject<T> extends Observable<T> implements ISubscription {
|
||||
observers: Observer<T>[];
|
||||
closed: boolean;
|
||||
isStopped: boolean;
|
||||
hasError: boolean;
|
||||
thrownError: any;
|
||||
constructor();
|
||||
static create: Function;
|
||||
lift<R>(operator: Operator<T, R>): Observable<R>;
|
||||
next(value?: T): void;
|
||||
error(err: any): void;
|
||||
complete(): void;
|
||||
unsubscribe(): void;
|
||||
protected _trySubscribe(subscriber: Subscriber<T>): TeardownLogic;
|
||||
/** @deprecated internal use only */ _subscribe(subscriber: Subscriber<T>): Subscription;
|
||||
asObservable(): Observable<T>;
|
||||
}
|
||||
/**
|
||||
* @class AnonymousSubject<T>
|
||||
*/
|
||||
export declare class AnonymousSubject<T> extends Subject<T> {
|
||||
protected destination: Observer<T>;
|
||||
constructor(destination?: Observer<T>, source?: Observable<T>);
|
||||
next(value: T): void;
|
||||
error(err: any): void;
|
||||
complete(): void;
|
||||
/** @deprecated internal use only */ _subscribe(subscriber: Subscriber<T>): Subscription;
|
||||
}
|
||||
Reference in New Issue
Block a user