12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
import { DOMException } from '../_internal/DOMException.js';
|
|
|
|
/**
|
|
* An error class representing a timeout operation.
|
|
* @augments DOMException
|
|
*/
|
|
declare class TimeoutError extends DOMException {
|
|
constructor(message?: string);
|
|
}
|
|
|
|
export { TimeoutError };
|