(prompt string, searchPrompt string, defaultValues, persistentValues []string, searchFunc func(string) MultiSelectSearchResult)
| 359 | } |
| 360 | |
| 361 | func (p *surveyPrompter) MultiSelectWithSearch(prompt string, searchPrompt string, defaultValues, persistentValues []string, searchFunc func(string) MultiSelectSearchResult) ([]string, error) { |
| 362 | return multiSelectWithSearch(p, prompt, searchPrompt, defaultValues, persistentValues, searchFunc) |
| 363 | } |
| 364 | |
| 365 | type MultiSelectSearchResult struct { |
| 366 | Keys []string |
nothing calls this directly
no test coverage detected