10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
/**
|
|
* An error class representing an timeout operation.
|
|
* @augments Error
|
|
*/
|
|
declare class TimeoutError extends Error {
|
|
constructor(message?: string);
|
|
}
|
|
|
|
export { TimeoutError };
|