Skip to content

AbortError

An error class representing an operation that was aborted.

It occurs when operations like debounce or delay are aborted using AbortSignals.

Interface

typescript
class AbortError extends Error {
  name = 'AbortError',
}

Released under the MIT License.