create-web3-dapp-dev
Version:
<p align="center"> <br /> <a href="https://createweb3dapp.alchemy.com"> <img src=".github/images/cw3d-logo.png" width="200" alt=""/></a> <br /> </p>
25 lines (23 loc) • 500 B
text/typescript
import prompts from "prompts";
export default async function checkIfQuit(data: any, message: string | null):Promise<boolean> {
let quit = false;
if (data == "quit") {
await prompts({
type: "select",
name: "quit",
message: "Are you sure you want to quit?" ,
choices: [
{
title: "Yes",
value: true,
},
{
title: "No",
value: false,
},
],
hint: "- Space to select. Return to submit",
}).then((data) => (quit = data.quit));
}
return quit;
}