Runtime validations
module.exports = (command, usage, prefix) => {
return command.commandName.startsWith("a");
};import { CommandUsage, Command } from "wokcommands";
export default (command: Command, usage: CommandUsage, prefix: string) => {
return command.commandName.startsWith("a");
};Last updated