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.
 
 
 
 

14 lines
258 B

  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. }