| 4 | import Prompt, { type PromptOptions } from './prompt.js'; |
| 5 | |
| 6 | interface OptionLike { |
| 7 | value: unknown; |
| 8 | label?: string; |
| 9 | disabled?: boolean; |
| 10 | } |
| 11 | |
| 12 | type FilterFunction<T extends OptionLike> = (search: string, opt: T) => boolean; |
| 13 |
nothing calls this directly
no outgoing calls
no test coverage detected