TenantAtlas/apps/platform/.pnpm-store/v10/files/ea/2afd91f19df1c2c03d440f1beacfdabef58300311e46f3b65844688ce0c608ad85746d0dbe141391c07b64b7a8a0017f3250c0d7b0d078024feb3daa830313
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

17 lines
558 B
Plaintext

export interface SequenceError extends Error {
}
export interface SequenceErrorCtor {
/**
* @deprecated Internal implementation detail. Do not construct error instances.
* Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269
*/
new (message: string): SequenceError;
}
/**
* An error thrown when something is wrong with the sequence of
* values arriving on the observable.
*
* @see {@link operators/single}
*/
export declare const SequenceError: SequenceErrorCtor;
//# sourceMappingURL=SequenceError.d.ts.map