es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
12 lines (11 loc) • 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 };