LendAndRegret/node_modules/es-toolkit/dist/error/AbortError.d.mts
2026-05-02 17:27:43 +08:00

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 };