adb6d603d8021ab6861f6bf8e7a41ac4dab1ca9b8b0895bcf5b7fa6b6157c180b7bc89f32118df760f6a6540103c4e7222050d08a9a35164f80a54182a8fce 344 B

12345678910111213141516
  1. export interface EmptyError extends Error {
  2. }
  3. export interface EmptyErrorCtor {
  4. new (): EmptyError;
  5. }
  6. /**
  7. * An error thrown when an Observable or a sequence was queried but has no
  8. * elements.
  9. *
  10. * @see {@link first}
  11. * @see {@link last}
  12. * @see {@link single}
  13. *
  14. * @class EmptyError
  15. */
  16. export declare const EmptyError: EmptyErrorCtor;