Prelude API
    Preparing search index...

    Interface AbortSignalLike

    interface AbortSignalLike {
        aborted: boolean;
        reason?: unknown;
        addEventListener(
            event: "abort",
            callback: () => void,
            options?: { once?: boolean },
        ): void;
        removeEventListener(event: "abort", callback: () => void): void;
    }
    Index
    aborted: boolean
    reason?: unknown
    • Parameters

      • event: "abort"
      • callback: () => void
      • Optionaloptions: { once?: boolean }

      Returns void

    • Parameters

      • event: "abort"
      • callback: () => void

      Returns void