UNPKG

428 BTypeScriptView Raw
1import { Subject } from './Subject';
2/**
3 * A variant of Subject that only emits a value when it completes. It will emit
4 * its latest value to all its observers on completion.
5 *
6 * @class AsyncSubject<T>
7 */
8export declare class AsyncSubject<T> extends Subject<T> {
9 private _value;
10 private _hasValue;
11 private _isComplete;
12 next(value: T): void;
13 complete(): void;
14}
15//# sourceMappingURL=AsyncSubject.d.ts.map
\No newline at end of file