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.

TimeoutError.d.ts 277B

12345678910111213
  1. export interface TimeoutError extends Error {
  2. }
  3. export interface TimeoutErrorCtor {
  4. new (): TimeoutError;
  5. }
  6. /**
  7. * An error thrown when duetime elapses.
  8. *
  9. * @see {@link operators/timeout}
  10. *
  11. * @class TimeoutError
  12. */
  13. export declare const TimeoutError: TimeoutErrorCtor;