| 267 | * Options for the {@link autocompleteMultiselect} prompt |
| 268 | */ |
| 269 | export interface AutocompleteMultiSelectOptions<Value> extends AutocompleteSharedOptions<Value> { |
| 270 | /** |
| 271 | * The initially selected option(s) from the list. |
| 272 | */ |
| 273 | initialValues?: Value[]; |
| 274 | |
| 275 | /** |
| 276 | * When `true` at least one option must be selected. |
| 277 | * @default false |
| 278 | */ |
| 279 | required?: boolean; |
| 280 | } |
| 281 | |
| 282 | /** |
| 283 | * The `autocompleteMultiselect` prompt combines the search functionality of autocomplete |
nothing calls this directly
no outgoing calls
no test coverage detected