Opal-Estate-Pro/node_modules/rxjs/util/UnsubscriptionError.d.ts
2019-09-13 09:44:33 +07:00

9 lines
230 B
TypeScript

/**
* An error thrown when one or more errors have occurred during the
* `unsubscribe` of a {@link Subscription}.
*/
export declare class UnsubscriptionError extends Error {
errors: any[];
constructor(errors: any[]);
}