Interface AutocompleteSuggestion

API-compatible autocomplete suggestion item.

interface AutocompleteSuggestion {
    name: string;
    value: string | number;
}

Properties

Properties

name: string

Name of the autocomplete suggestion.

value: string | number

Value of the autocomplete suggestion.

Generated using TypeDoc