Files
2026-04-13 08:19:53 +08:00

10 lines
182 B
TypeScript

/**
* An error class representing an aborted operation.
* @augments Error
*/
declare class AbortError extends Error {
constructor(message?: string);
}
export { AbortError };