Enable an action to "request" arguments from the users. ``` const name = await arg("Your name"); // with options const orgType = arg("Type of Organisation", { options: [{ label: "Large", value: "lg" }, { label: "small", value: "indie" }], strict: false, prefilled: "small" }) // disabling strict enables user to type anything ```
Enable an action to "request" arguments from the users.