kysely
    Preparing search index...

    Interface AbortSignal

    interface AbortSignal {
        aborted: boolean;
        onabort: ((ev: Event) => void) | null;
        reason: any;
        addEventListener<K extends "abort">(
            type: K,
            listener: (ev: AbortSignalEventMap[K]) => void,
            options?: boolean | AddEventListenerOptions,
        ): void;
        addEventListener(
            type: string,
            listener: EventListener | EventListenerObject,
            options?: boolean | AddEventListenerOptions,
        ): void;
        dispatchEvent(event: Event): boolean;
        removeEventListener<K extends "abort">(
            type: K,
            listener: (ev: AbortSignalEventMap[K]) => void,
            options?: boolean | EventListenerOptions,
        ): void;
        removeEventListener(
            type: string,
            listener: EventListener | EventListenerObject,
            options?: boolean | EventListenerOptions,
        ): void;
        throwIfAborted(): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    aborted: boolean
    onabort: ((ev: Event) => void) | null
    reason: any

    Methods