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

    Interface AbortSignal

    interface AbortSignal {
        aborted: boolean;
        onabort: (this: AbortSignal, ev: Event) => any;
        reason: any;
        addEventListener(
            type: string,
            listener: EventListener | EventListenerObject,
            options?: boolean | AddEventListenerOptions,
        ): void;
        dispatchEvent(event: Event): boolean;
        removeEventListener(
            type: string,
            listener: EventListener | EventListenerObject,
            options?: boolean | EventListenerOptions,
        ): void;
        throwIfAborted(): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    aborted: boolean
    onabort: (this: AbortSignal, ev: Event) => any
    reason: any

    Methods

    • Returns void