LendAndRegret/node_modules/es-toolkit/dist/error/TimeoutError.d.mts
2026-05-02 17:27:43 +08:00

12 lines
262 B
TypeScript

import { DOMException } from '../_internal/DOMException.mjs';
/**
* An error class representing a timeout operation.
* @augments DOMException
*/
declare class TimeoutError extends DOMException {
constructor(message?: string);
}
export { TimeoutError };