Front end of the Slack clone application.

ObjectUnsubscribedError.d.ts 276B

12345678910111213
  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. }