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.

ObjectUnsubscribedError.d.ts 414B

123456789101112131415
  1. export interface ObjectUnsubscribedError extends Error {
  2. }
  3. export interface ObjectUnsubscribedErrorCtor {
  4. new (): ObjectUnsubscribedError;
  5. }
  6. /**
  7. * An error thrown when an action is invalid because the object has been
  8. * unsubscribed.
  9. *
  10. * @see {@link Subject}
  11. * @see {@link BehaviorSubject}
  12. *
  13. * @class ObjectUnsubscribedError
  14. */
  15. export declare const ObjectUnsubscribedError: ObjectUnsubscribedErrorCtor;