| 2 | import Prompt, { type PromptOptions } from './prompt.js'; |
| 3 | |
| 4 | interface OptionLike { |
| 5 | value: any; |
| 6 | disabled?: boolean; |
| 7 | } |
| 8 | |
| 9 | export interface MultiSelectOptions<T extends OptionLike> |
| 10 | extends PromptOptions<T['value'][], MultiSelectPrompt<T>> { |
nothing calls this directly
no outgoing calls
no test coverage detected