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