name of the command, 1-32 characters, (no symbols except - and _)
1-100 character description
a builder
script.createSlashCommand("echo", "echo's your input")
.addOptionString("what", "what to echo")
.build(async (ctx, args) => {
await ctx.sendResponse(args.what);
})
Generated using TypeDoc
Create a new slash command builder