(message, defaultValue, type, options)
| 914 | } |
| 915 | |
| 916 | async prompt(message, defaultValue, type, options) { |
| 917 | const response = await prompt(message, defaultValue, type, options); |
| 918 | return response; |
| 919 | } |
| 920 | |
| 921 | async confirm(title, message) { |
| 922 | const confirmation = await confirm(title, message); |