ts-lambda-api - v2.5.2
    Preparing search index...

    Interface AbortSignal

    use platform (global) type for AbortSignal.

    Holders of an AbortSignal object may query if the associated operation has been aborted and register an onabort handler.

    interface AbortSignal {
        aborted: boolean;
        onabort: Function | AbortHandler;
    }
    Index

    Properties

    Properties

    aborted: boolean

    Whether the action represented by this signal has been cancelled.

    onabort: Function | AbortHandler

    A function to be invoked when the action represented by this signal has been cancelled.