UnsubscriptionError.d.ts 230 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 /** * 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[]); }