mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-12-19 10:12:51 +00:00
9 lines
230 B
TypeScript
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[]);
|
||
|
|
}
|