Files
Pake/bin/builders/common.ts
2022-11-22 00:24:06 +08:00

12 lines
237 B
TypeScript
Vendored

import prompts from 'prompts';
export async function promptText(message: string, initial?: string) {
const response = await prompts({
type: 'text',
name: 'content',
message,
initial,
});
return response.content;
}