work.suroh.tk/node_modules/rxjs/util/UnsubscriptionError.d.ts

9 lines
230 B
TypeScript
Raw Normal View History

2019-12-02 12:22:45 +00:00
/**
* 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[]);
}