@ac-essentials/misc-util
    Preparing search index...

    Type Alias AbortableProps

    type AbortableProps = {
        onAbort: (error?: unknown) => void;
        signal?: AbortSignal | null;
    }
    Index

    Properties

    Properties

    onAbort: (error?: unknown) => void

    The callback to call when the operation is aborted.

    signal?: AbortSignal | null

    The abort signal to listen to.