Interface AbortOptions

An options interface for an async API, that supports an optional AbortSignal property.

interface AbortOptions {
    signal?: AbortSignal;
}

Hierarchy

  • AbortOptions

    Properties

    Properties

    signal?: AbortSignal

    An optional AbortSignal that can be used to abort an async task.

    Generated using TypeDoc