frontend/.pnpm-store/v3/files/65/bc81130407888b5790f8b8e9bb4b810a98f57571e61540fab0ce3c333e6b0cca91951546c72fe3571e51f9d9e79885ab21edfbec5e5b423637f8aa8621857b

12 lines
361 B
Plaintext

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