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

    Interface InputTextOptions

    Options for inputText.

    interface InputTextOptions {
        ignoreFocusOut?: boolean;
        password?: boolean;
        placeHolder?: string;
        prompt: string;
        signal?: AbortSignal;
        validate?: (
            value: string,
        ) => string | Promise<string | undefined> | undefined;
        value?: string;
    }
    Index
    ignoreFocusOut?: boolean

    Keep the input box open when focus moves elsewhere (default: false, matching vscode.window.showInputBox's own default).

    password?: boolean

    Password input mode.

    placeHolder?: string

    Placeholder text.

    prompt: string

    Prompt text to display.

    signal?: AbortSignal

    Cancels the input: aborting hides the box and resolves undefined.

    validate?: (value: string) => string | Promise<string | undefined> | undefined

    Validation function. May be asynchronous. A non-empty message blocks acceptance; a thrown/rejected error rejects inputText.

    value?: string

    Initial value.