The handler function type for a command.
The message object.
The parsed arguments according to the schema.
const handler: CommandHandler = async (message, args) => { // args.name, args.age, etc. console.log(args);}; Copy
const handler: CommandHandler = async (message, args) => { // args.name, args.age, etc. console.log(args);};
The handler function type for a command.