Package version:

Interface AutocompleteItem

The result of Autocomplete requests.

interface AutocompleteItem {
    queryPlusText: string;
    text: string;
}

Properties

Properties

queryPlusText: string

The query along with the completed term. NOTE: This property will not be serialized. It can only be populated by the server.

text: string

The completed term. NOTE: This property will not be serialized. It can only be populated by the server.