source: trip-planner-front/node_modules/rxjs/internal/util/UnsubscriptionError.d.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 361 bytes
Line 
1export interface UnsubscriptionError extends Error {
2 readonly errors: any[];
3}
4export 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 */
11export declare const UnsubscriptionError: UnsubscriptionErrorCtor;
Note: See TracBrowser for help on using the repository browser.