Add CommandContext

This commit is contained in:
Vylpes 2021-07-18 14:14:32 +01:00
parent 23858f72fc
commit 6e700df0de
5 changed files with 20 additions and 110 deletions

View file

@ -0,0 +1,7 @@
import { Message } from "discord.js";
export interface ICommandContext {
name: string;
args: string[];
message: Message;
}