@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface WebviewRpcRequestOptions

    Options accepted by request on both the host and the webview side.

    interface WebviewRpcRequestOptions {
        signal?: AbortSignal;
        timeoutMs?: number;
    }
    Index
    signal?: AbortSignal

    Aborts the request, rejecting it locally and best-effort notifying the peer. The peer stops only if its handler cooperates with ctx.signal.

    timeoutMs?: number

    Convenience for a timeout-only abort; combined with signal if both are given. Timeout uses the same cooperative peer cancellation path.