| 7 | const cursorActions = new Set<CursorAction>(['up', 'down', 'left', 'right']); |
| 8 | |
| 9 | export interface MultiLineOptions extends PromptOptions<string, MultiLinePrompt> { |
| 10 | placeholder?: string; |
| 11 | defaultValue?: string; |
| 12 | showSubmit?: boolean; |
| 13 | } |
| 14 | |
| 15 | export default class MultiLinePrompt extends Prompt<string> { |
| 16 | #lastKeyWasReturn = false; |
nothing calls this directly
no outgoing calls
no test coverage detected