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

    Interface ProgressStep<T>

    One step in a OperationProgress.steps run.

    interface ProgressStep<T = void> {
        label: string;
        run: (signal: AbortSignal) => T | Promise<T>;
        weight?: number;
    }

    Type Parameters

    • T = void
    Index
    label: string

    Shown while this step runs.

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

    The work. Receives the combined signal, like any other operation work.

    weight?: number

    How much of the bar this step accounts for, relative to the others.

    1