12 lines
309 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
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 };