TYPESCRIPT AbortError.d.ts
import { DOMException } from "../_internal/DOMException.js";
//#region src/error/AbortError.d.ts
/**
* An error class representing an aborted operation.
* @augments DOMException
*/
declare class AbortError extends DOMException {
constructor(message?: string);
}
//#endregion
export { AbortError };