| 15 | } from "./utils"; |
| 16 | |
| 17 | export interface TextPromptOptions extends PromptOptions { |
| 18 | label: string; |
| 19 | message: string; |
| 20 | initial?: string; |
| 21 | style?: string; |
| 22 | validate?: (v: any) => v is string; |
| 23 | error?: string; |
| 24 | hint?: string; |
| 25 | } |
| 26 | |
| 27 | export class TextPrompt extends Prompt { |
| 28 | transform: { render: (v: string) => any; scale: number }; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…