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
21 lines
1.3 KiB
Plaintext
21 lines
1.3 KiB
Plaintext
import { Observable } from '../Observable';
|
|
import { ObservableInput, ObservedValueOf, ReadableStreamLike } from '../types';
|
|
export declare function innerFrom<O extends ObservableInput<any>>(input: O): Observable<ObservedValueOf<O>>;
|
|
/**
|
|
* Creates an RxJS Observable from an object that implements `Symbol.observable`.
|
|
* @param obj An object that properly implements `Symbol.observable`.
|
|
*/
|
|
export declare function fromInteropObservable<T>(obj: any): Observable<T>;
|
|
/**
|
|
* Synchronously emits the values of an array like and completes.
|
|
* This is exported because there are creation functions and operators that need to
|
|
* make direct use of the same logic, and there's no reason to make them run through
|
|
* `from` conditionals because we *know* they're dealing with an array.
|
|
* @param array The array to emit values from
|
|
*/
|
|
export declare function fromArrayLike<T>(array: ArrayLike<T>): Observable<T>;
|
|
export declare function fromPromise<T>(promise: PromiseLike<T>): Observable<T>;
|
|
export declare function fromIterable<T>(iterable: Iterable<T>): Observable<T>;
|
|
export declare function fromAsyncIterable<T>(asyncIterable: AsyncIterable<T>): Observable<T>;
|
|
export declare function fromReadableStreamLike<T>(readableStream: ReadableStreamLike<T>): Observable<T>;
|
|
//# sourceMappingURL=innerFrom.d.ts.map |