Interface IInputBoxOptions

interface IInputBoxOptions {
    ignoreFocusOut?: boolean;
    password?: boolean;
    placeHolder?: string;
    prompt?: string;
    value?: string;
    valueSelection?: [number, number];
}

Properties

ignoreFocusOut?: boolean
password?: boolean
placeHolder?: string
prompt?: string
value?: string
valueSelection?: [number, number]