* Merge VylBot-Core * Update commands to new system * Fix issue where events would not load
7 lines
No EOL
126 B
TypeScript
7 lines
No EOL
126 B
TypeScript
import { Message } from "discord.js";
|
|
|
|
export interface ICommandContext {
|
|
name: string;
|
|
args: string[];
|
|
message: Message;
|
|
} |