(prompt, searchPrompt string, defaultValues, persistentValues []string, searchFunc func(string) MultiSelectSearchResult)
| 339 | } |
| 340 | |
| 341 | func (p *accessiblePrompter) MultiSelectWithSearch(prompt, searchPrompt string, defaultValues, persistentValues []string, searchFunc func(string) MultiSelectSearchResult) ([]string, error) { |
| 342 | return multiSelectWithSearch(p, prompt, searchPrompt, defaultValues, persistentValues, searchFunc) |
| 343 | } |
| 344 | |
| 345 | type surveyPrompter struct { |
| 346 | prompter *ghPrompter.Prompter |
nothing calls this directly
no test coverage detected