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
24 lines
1.7 KiB
Plaintext
24 lines
1.7 KiB
Plaintext
import { Observable } from '../Observable';
|
|
import { ObservedValueOf, ObservableInputTuple, ObservableInput } from '../types';
|
|
import { AnyCatcher } from '../AnyCatcher';
|
|
/**
|
|
* You have passed `any` here, we can't figure out if it is
|
|
* an array or an object, so you're getting `unknown`. Use better types.
|
|
* @param arg Something typed as `any`
|
|
*/
|
|
export declare function forkJoin<T extends AnyCatcher>(arg: T): Observable<unknown>;
|
|
export declare function forkJoin(scheduler: null | undefined): Observable<never>;
|
|
export declare function forkJoin(sources: readonly []): Observable<never>;
|
|
export declare function forkJoin<A extends readonly unknown[]>(sources: readonly [...ObservableInputTuple<A>]): Observable<A>;
|
|
export declare function forkJoin<A extends readonly unknown[], R>(sources: readonly [...ObservableInputTuple<A>], resultSelector: (...values: A) => R): Observable<R>;
|
|
/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */
|
|
export declare function forkJoin<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A>;
|
|
/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */
|
|
export declare function forkJoin<A extends readonly unknown[], R>(...sourcesAndResultSelector: [...ObservableInputTuple<A>, (...values: A) => R]): Observable<R>;
|
|
export declare function forkJoin(sourcesObject: {
|
|
[K in any]: never;
|
|
}): Observable<never>;
|
|
export declare function forkJoin<T extends Record<string, ObservableInput<any>>>(sourcesObject: T): Observable<{
|
|
[K in keyof T]: ObservedValueOf<T[K]>;
|
|
}>;
|
|
//# sourceMappingURL=forkJoin.d.ts.map |