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

    Interface ThrottleOptions

    Options for throttle.

    interface ThrottleOptions {
        leading?: boolean;
        signal?: AbortSignal;
        trailing?: boolean;
    }
    Index
    leading?: boolean

    Invoke immediately on the first call of a burst.

    true
    
    signal?: AbortSignal

    Cancels any pending invocation when aborted, and leaves the function inert afterwards: later calls do nothing.

    trailing?: boolean

    Invoke once more after the burst ends, with the most recent arguments, if calls were dropped in between.

    true