Metatell AI Bot - v0.0.10
    Preparing search index...
    interface AbortSignal {
        aborted: boolean;
        onabort: null | ((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

    • EventTarget
      • AbortSignal
    Index

    Properties

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

    Methods

    • Parameters

      Returns boolean

    • Returns void