EmptyError.d.ts 258 B

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