mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-10 21:01:41 +00:00
update
This commit is contained in:
14
node_modules/rxjs/BehaviorSubject.d.ts
generated
vendored
Normal file
14
node_modules/rxjs/BehaviorSubject.d.ts
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
import { Subject } from './Subject';
|
||||
import { Subscriber } from './Subscriber';
|
||||
import { Subscription } from './Subscription';
|
||||
/**
|
||||
* @class BehaviorSubject<T>
|
||||
*/
|
||||
export declare class BehaviorSubject<T> extends Subject<T> {
|
||||
private _value;
|
||||
constructor(_value: T);
|
||||
readonly value: T;
|
||||
/** @deprecated internal use only */ _subscribe(subscriber: Subscriber<T>): Subscription;
|
||||
getValue(): T;
|
||||
next(value: T): void;
|
||||
}
|
Reference in New Issue
Block a user