mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 08:32:56 +00:00
12 lines
308 B
TypeScript
12 lines
308 B
TypeScript
import { DOMException } from "../_internal/DOMException.js";
|
|
|
|
//#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 }; |