TenantAtlas/apps/platform/.pnpm-store/v10/files/10/2f1e127c8f85f860fd786b67eafcbbe9af74aed136534076964e23daf291d8dc3f561e818d8bd30d70ed9fc2c645619ca085ff3c2814ffb2dd2741241caa3e
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
542 B
Plaintext

export interface NotFoundError extends Error {
}
export interface NotFoundErrorCtor {
/**
* @deprecated Internal implementation detail. Do not construct error instances.
* Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269
*/
new (message: string): NotFoundError;
}
/**
* An error thrown when a value or values are missing from an
* observable sequence.
*
* @see {@link operators/single}
*/
export declare const NotFoundError: NotFoundErrorCtor;
//# sourceMappingURL=NotFoundError.d.ts.map