Interface IntegerOption

interface IntegerOption {
    autocomplete?: AutocompleteProvider<number>;
    choices?: OptionChoice<number>[];
    maxValue?: number;
    minValue?: number;
}

Properties

autocomplete?: AutocompleteProvider<number>

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<number>[]

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

maxValue?: number
minValue?: number

Generated using TypeDoc