| 27 | } from '@clack/prompts' |
| 28 | |
| 29 | interface TextOptions { |
| 30 | message: string |
| 31 | placeholder?: string |
| 32 | defaultValue?: string |
| 33 | initialValue?: string |
| 34 | validate?: (value: string) => string | Error | undefined |
| 35 | } |
| 36 | |
| 37 | export function text(opts: TextOptions): Promise<string | symbol> { |
| 38 | const fillValue = opts.defaultValue ?? opts.placeholder |
nothing calls this directly
no outgoing calls
no test coverage detected