Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
42 lines
1.9 KiB
Plaintext
42 lines
1.9 KiB
Plaintext
import { Subject } from '../Subject';
|
|
import { Observable } from '../Observable';
|
|
import { Subscription } from '../Subscription';
|
|
/**
|
|
* @class ConnectableObservable<T>
|
|
* @deprecated Will be removed in v8. Use {@link connectable} to create a connectable observable.
|
|
* If you are using the `refCount` method of `ConnectableObservable`, use the {@link share} operator
|
|
* instead.
|
|
* Details: https://rxjs.dev/deprecations/multicasting
|
|
*/
|
|
export declare class ConnectableObservable<T> extends Observable<T> {
|
|
source: Observable<T>;
|
|
protected subjectFactory: () => Subject<T>;
|
|
protected _subject: Subject<T> | null;
|
|
protected _refCount: number;
|
|
protected _connection: Subscription | null;
|
|
/**
|
|
* @param source The source observable
|
|
* @param subjectFactory The factory that creates the subject used internally.
|
|
* @deprecated Will be removed in v8. Use {@link connectable} to create a connectable observable.
|
|
* `new ConnectableObservable(source, factory)` is equivalent to
|
|
* `connectable(source, { connector: factory })`.
|
|
* When the `refCount()` method is needed, the {@link share} operator should be used instead:
|
|
* `new ConnectableObservable(source, factory).refCount()` is equivalent to
|
|
* `source.pipe(share({ connector: factory }))`.
|
|
* Details: https://rxjs.dev/deprecations/multicasting
|
|
*/
|
|
constructor(source: Observable<T>, subjectFactory: () => Subject<T>);
|
|
protected getSubject(): Subject<T>;
|
|
protected _teardown(): void;
|
|
/**
|
|
* @deprecated {@link ConnectableObservable} will be removed in v8. Use {@link connectable} instead.
|
|
* Details: https://rxjs.dev/deprecations/multicasting
|
|
*/
|
|
connect(): Subscription;
|
|
/**
|
|
* @deprecated {@link ConnectableObservable} will be removed in v8. Use the {@link share} operator instead.
|
|
* Details: https://rxjs.dev/deprecations/multicasting
|
|
*/
|
|
refCount(): Observable<T>;
|
|
}
|
|
//# sourceMappingURL=ConnectableObservable.d.ts.map |