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.

ObjectUnsubscribedError.d.ts 276 B

пре 3 година
123456789101112
  1. /**
  2. * An error thrown when an action is invalid because the object has been
  3. * unsubscribed.
  4. *
  5. * @see {@link Subject}
  6. * @see {@link BehaviorSubject}
  7. *
  8. * @class ObjectUnsubscribedError
  9. */
  10. export declare class ObjectUnsubscribedError extends Error {
  11. constructor();
  12. }