| 16 | * Options for the {@link group} utility. |
| 17 | */ |
| 18 | export interface PromptGroupOptions<T> { |
| 19 | /** |
| 20 | * Called when any one of the prompts is canceled. |
| 21 | */ |
| 22 | onCancel?: (opts: { results: Prettify<Partial<PromptGroupAwaitedReturn<T>>> }) => void; |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * A group of prompts to be displayed sequentially, with each prompt receiving |
nothing calls this directly
no outgoing calls
no test coverage detected