abort-error.d.ts 225 B

123456
  1. import type { AbortSignal } from 'node-abort-controller';
  2. declare class AbortError extends Error {
  3. constructor(message?: string);
  4. static throwIfAborted(signal: AbortSignal | undefined): void;
  5. }
  6. export { AbortError };