12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import { DOMException } from '../_internal/DOMException.mjs';
|
|
|
|
/**
|
|
* An error class representing an aborted operation.
|
|
* @augments DOMException
|
|
*/
|
|
declare class AbortError extends DOMException {
|
|
constructor(message?: string);
|
|
}
|
|
|
|
export { AbortError };
|