ec67347dfcdc2cbbfbfc530d523274f88915b72ddb0e99ad4e52624084006f0843eb9fdc754ddfd43ba4e99e0f8059d1f661363563b0ccf6e6f89f0d12f718 605 B

123456789101112131415161718192021
  1. export interface EmptyError extends Error {
  2. }
  3. export interface EmptyErrorCtor {
  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 (): EmptyError;
  9. }
  10. /**
  11. * An error thrown when an Observable or a sequence was queried but has no
  12. * elements.
  13. *
  14. * @see {@link first}
  15. * @see {@link last}
  16. * @see {@link single}
  17. * @see {@link firstValueFrom}
  18. * @see {@link lastValueFrom}
  19. */
  20. export declare const EmptyError: EmptyErrorCtor;
  21. //# sourceMappingURL=EmptyError.d.ts.map