Ohm-Management - Projektarbeit B-ME
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.

EmptyError.d.ts 344B

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;