mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-12-14 08:29:03 +00:00
11 lines
173 B
TypeScript
11 lines
173 B
TypeScript
|
|
/**
|
||
|
|
* An error thrown when duetime elapses.
|
||
|
|
*
|
||
|
|
* @see {@link timeout}
|
||
|
|
*
|
||
|
|
* @class TimeoutError
|
||
|
|
*/
|
||
|
|
export declare class TimeoutError extends Error {
|
||
|
|
constructor();
|
||
|
|
}
|