minor adjustment to readme
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / util / UnsubscriptionError.d.ts
1 export interface UnsubscriptionError extends Error {
2     readonly errors: any[];
3 }
4 export interface UnsubscriptionErrorCtor {
5     new (errors: any[]): UnsubscriptionError;
6 }
7 /**
8  * An error thrown when one or more errors have occurred during the
9  * `unsubscribe` of a {@link Subscription}.
10  */
11 export declare const UnsubscriptionError: UnsubscriptionErrorCtor;