TenantAtlas/apps/platform/.pnpm-store/v10/files/34/8ededc3fde4974449eb5495445dec573950640c10ef743344a22a48b557c95d0d9d5a8874fe846a79f93fc3efbe2eb73e73c54523be510adb24a5b3d5924db
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

13 lines
382 B
Plaintext

import { Subject } from './Subject';
/**
* A variant of Subject that requires an initial value and emits its current
* value whenever it is subscribed to.
*/
export declare class BehaviorSubject<T> extends Subject<T> {
private _value;
constructor(_value: T);
get value(): T;
getValue(): T;
next(value: T): void;
}
//# sourceMappingURL=BehaviorSubject.d.ts.map