@laiyon/create-wasapi
Version:
CLI to create WhatsApp bot projects with Wasapi and BuilderBot
15 lines (14 loc) • 382 B
JavaScript
import chalk from "chalk";
import inquirer from "inquirer";
export const phoneSelector = async (choices) => {
const { phoneData } = await inquirer.prompt([
{
type: "list",
name: "phoneData",
message: chalk.blue("📱 Select the phone number:"),
choices,
pageSize: 10
}
]);
return phoneData;
};