basant307/AI_Governance_Project
048
1import { DOMException } from '../_internal/DOMException.mjs';2 3/**4 * An error class representing a timeout operation.5 * @augments DOMException6 */7declare class TimeoutError extends DOMException {8 constructor(message?: string);9}10 11export { TimeoutError };12 