| 7 | * Options for the {@link multiline} prompt |
| 8 | */ |
| 9 | export interface MultiLineOptions extends TextOptions { |
| 10 | /** |
| 11 | * When enabled it shows a `[ submit ]` button that can be focused with tab. |
| 12 | * By default, pressing `Enter` twice submits the input |
| 13 | * |
| 14 | * @default false |
| 15 | */ |
| 16 | showSubmit?: boolean; |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * The multi-line prompt accepts multiple lines of text input. |
nothing calls this directly
no outgoing calls
no test coverage detected