UNPKG

594 BTypeScriptView Raw
1export interface UnsubscriptionError extends Error {
2 readonly errors: any[];
3}
4export interface UnsubscriptionErrorCtor {
5 /**
6 * @deprecated Internal implementation detail. Do not construct error instances.
7 * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269
8 */
9 new (errors: any[]): UnsubscriptionError;
10}
11/**
12 * An error thrown when one or more errors have occurred during the
13 * `unsubscribe` of a {@link Subscription}.
14 */
15export declare const UnsubscriptionError: UnsubscriptionErrorCtor;
16//# sourceMappingURL=UnsubscriptionError.d.ts.map
\No newline at end of file