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

    Interface WizardRunOptions

    Options for WizardBuilder.run.

    interface WizardRunOptions {
        ignoreFocusOut?: boolean;
        logger?: Logger;
        showStepNumbers?: boolean;
        signal?: AbortSignal;
        title: string;
        ui?: QuickInputCapability;
    }
    Index
    ignoreFocusOut?: boolean

    Keep each step's QuickPick/InputBox open when focus moves elsewhere. Defaults to true — without it, briefly switching windows mid-wizard silently discards everything answered so far.

    true
    
    logger?: Logger

    Receives step-transition debug logs.

    showStepNumbers?: boolean

    Show native step/total-step numbering (VS Code's own "1/3" indicator).

    true
    
    signal?: AbortSignal

    Aborting cancels the wizard: the open step hides and run resolves cancelled.

    title: string

    Title shown for steps that don't set their own opts.title.

    The quick-input surface to build steps on. Required when the builder was created without a default (the root wizard() export binds VS Code).