(prompt string, defaultValues, options []string)
| 355 | } |
| 356 | |
| 357 | func (p *surveyPrompter) MultiSelect(prompt string, defaultValues, options []string) ([]int, error) { |
| 358 | return p.prompter.MultiSelect(prompt, defaultValues, options) |
| 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) |
nothing calls this directly
no test coverage detected