frontend/.pnpm-store/v3/files/5a/0371444674d8883718468a02e18f950ef037b867526b9e7093d5310a801dbf833d90389a943ec13603e4b85a55c93ba5ce41e82c277b91e608ba3b9949ca67

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