Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnsubscriptionError.d.ts 361B

1234567891011
  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;