import { NS } from "@ns"; export const main = async (ns: NS) => { const bruh = await ns.prompt("hello", { type: "text", choices: ["asdf1", "asdf2"] }); console.log(bruh); };