2548f6a5bbe8bbd040c1dd06095c8aa4e6118bbbae69871a4dc11b1b6ec3b4c44b325c5606296d275aebc081d4ad19aff5328ab3d1d50d6a440250f72d6c2f 651 B

1234567891011121314151617181920
  1. export interface ObjectUnsubscribedError extends Error {
  2. }
  3. export interface ObjectUnsubscribedErrorCtor {
  4. /**
  5. * @deprecated Internal implementation detail. Do not construct error instances.
  6. * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269
  7. */
  8. new (): ObjectUnsubscribedError;
  9. }
  10. /**
  11. * An error thrown when an action is invalid because the object has been
  12. * unsubscribed.
  13. *
  14. * @see {@link Subject}
  15. * @see {@link BehaviorSubject}
  16. *
  17. * @class ObjectUnsubscribedError
  18. */
  19. export declare const ObjectUnsubscribedError: ObjectUnsubscribedErrorCtor;
  20. //# sourceMappingURL=ObjectUnsubscribedError.d.ts.map