Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

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;