12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
|
|
import { DOMException } from "../_internal/DOMException.mjs";
|
||
|
|
|
||
|
|
//#region src/error/TimeoutError.d.ts
|
||
|
|
/**
|
||
|
|
* An error class representing a timeout operation.
|
||
|
|
* @augments DOMException
|
||
|
|
*/
|
||
|
|
declare class TimeoutError extends DOMException {
|
||
|
|
constructor(message?: string);
|
||
|
|
}
|
||
|
|
//#endregion
|
||
|
|
export { TimeoutError };
|