| 84 | } |
| 85 | |
| 86 | export interface AutocompleteOptions<Value> extends AutocompleteSharedOptions<Value> { |
| 87 | /** |
| 88 | * The initially selected option from the list. |
| 89 | */ |
| 90 | initialValue?: Value; |
| 91 | |
| 92 | /** |
| 93 | * The starting value shown in the users input box. |
| 94 | */ |
| 95 | initialUserInput?: string; |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * The `autocomplete` prompt combines a text input with a searchable list of options. |
nothing calls this directly
no outgoing calls
no test coverage detected