2018-11-22 16:41:46 +01:00
|
|
|
export interface TimeoutError extends Error {
|
|
|
|
}
|
|
|
|
export interface TimeoutErrorCtor {
|
|
|
|
new (): TimeoutError;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* An error thrown when duetime elapses.
|
|
|
|
*
|
2019-06-04 14:29:48 +02:00
|
|
|
* @see {@link operators/timeout}
|
2018-11-22 16:41:46 +01:00
|
|
|
*
|
|
|
|
* @class TimeoutError
|
|
|
|
*/
|
|
|
|
export declare const TimeoutError: TimeoutErrorCtor;
|