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

    Interface StepRunContext<S>

    What each step receives when it runs.

    interface StepRunContext<S> {
        backButton: QuickInputButtonLike | undefined;
        ignoreFocusOut: boolean;
        quickInput: QuickInputCapability;
        signal: AbortSignal | undefined;
        state: Readonly<S>;
        step: number | undefined;
        title: string;
        totalSteps: number | undefined;
    }

    Type Parameters

    • S
    Index
    backButton: QuickInputButtonLike | undefined
    ignoreFocusOut: boolean

    The quick-input surface the step builds its UI on.

    signal: AbortSignal | undefined

    Aborting hides the step's UI and cancels the wizard.

    state: Readonly<S>
    step: number | undefined
    title: string
    totalSteps: number | undefined