Prelude API
    Preparing search index...

    Interface AskOptions

    Options for Ref.ask.

    interface AskOptions {
        signal?: AbortSignal;
        timeout?: number;
    }
    Index
    signal?: AbortSignal

    Reject with signal.reason when aborted.

    timeout?: number

    Reject with an ActorError (code: 'timeout') if no reply arrives within this many milliseconds. Infinity or a value above 2_147_483_647 (the setTimeout limit, ~24.8 days) means never.