frontend/.pnpm-store/v3/files/2e/62f154b252e77cdc852fbb699ce814cd6d5bc17edbc540318e290e546f1a09d3753ad08b3857c7d85f28b42f3513a70f2e8b2e8251a30a51482d0b0bc501b9

19 lines
569 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}
*
* @class NotFoundError
*/
export declare const NotFoundError: NotFoundErrorCtor;
//# sourceMappingURL=NotFoundError.d.ts.map