(title: string, index: number)
| 935 | const description = InternalHelpDoc.p("Select which command you would like to execute") |
| 936 | const message = InternalHelpDoc.toAnsiText(description).trimEnd() |
| 937 | const makeChoice = (title: string, index: number) => ({ |
| 938 | title, |
| 939 | value: [title, index] as const |
| 940 | }) |
| 941 | const choices = pipe( |
| 942 | getSubcommandsInternal(self), |
| 943 | Arr.map(([name], index) => makeChoice(name, index)) |