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

    Type Alias TimeoutOperation<T>

    TimeoutOperation: Promise<T> | ((signal: AbortSignal) => Promise<T>)

    Work to race against a timeout.

    Pass a plain promise when the work cannot be cancelled, or a function taking an AbortSignal so it can cancel itself when the timeout — or an external signal — fires.

    Type Parameters

    • T