| 2 | import Prompt, { type PromptOptions } from './prompt.js'; |
| 3 | |
| 4 | export interface TextOptions extends PromptOptions<string, TextPrompt> { |
| 5 | placeholder?: string; |
| 6 | defaultValue?: string; |
| 7 | } |
| 8 | |
| 9 | export default class TextPrompt extends Prompt<string> { |
| 10 | get userInputWithCursor() { |
nothing calls this directly
no outgoing calls
no test coverage detected