UNPKG

585 BTypeScriptView Raw
1export interface SequenceError extends Error {
2}
3export interface SequenceErrorCtor {
4 /**
5 * @deprecated Internal implementation detail. Do not construct error instances.
6 * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269
7 */
8 new (message: string): SequenceError;
9}
10/**
11 * An error thrown when something is wrong with the sequence of
12 * values arriving on the observable.
13 *
14 * @see {@link operators/single}
15 *
16 * @class SequenceError
17 */
18export declare const SequenceError: SequenceErrorCtor;
19//# sourceMappingURL=SequenceError.d.ts.map
\No newline at end of file