(_index: number, option: SelectOption | null)
| 344 | } |
| 345 | |
| 346 | const selectCommandOption = (_index: number, option: SelectOption | null) => { |
| 347 | const item = toCommandSelectItem(option, commandItems) |
| 348 | if (item) { |
| 349 | selectCommand(item) |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | const selectModelOption = (_index: number, option: SelectOption | null) => { |
| 354 | const item = toModelSelectItem(option, filteredModelItems) |
nothing calls this directly
no test coverage detected