(options: Prompt.Prompt.ListOptions)
| 4 | |
| 5 | /** @internal */ |
| 6 | export const list = (options: Prompt.Prompt.ListOptions): Prompt.Prompt<Array<string>> => |
| 7 | InternalTextPrompt.text(options).pipe( |
| 8 | InternalPrompt.map((output) => output.split(options.delimiter || ",")) |
| 9 | ) |