es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
12 lines (11 loc) • 304 B
text/typescript
import { DOMException } from "../_internal/DOMException.mjs";
//#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 };