Add CommandContext
This commit is contained in:
parent
23858f72fc
commit
6e700df0de
5 changed files with 20 additions and 110 deletions
7
src/contracts/ICommandContext.ts
Normal file
7
src/contracts/ICommandContext.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
import { Message } from "discord.js";
|
||||
|
||||
export interface ICommandContext {
|
||||
name: string;
|
||||
args: string[];
|
||||
message: Message;
|
||||
}
|
Reference in a new issue