Interface StringOption

interface StringOption {
    autocomplete?: AutocompleteProvider<string>;
    choices?: OptionChoice<string>[];
}

Properties

autocomplete?: AutocompleteProvider<string>

Enables autocomplete for this option.

The callback will be called as users type and you respond with options that will show up on the fly.

choices?: OptionChoice<string>[]

A list of choices to present the user, up to 25 entries.

Generated using TypeDoc