This repository has been archived on 2023-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
vylbot-core/src/contracts/ICommandContext.ts
2021-07-18 14:14:32 +01:00

7 lines
126 B
TypeScript

import { Message } from "discord.js";
export interface ICommandContext {
name: string;
args: string[];
message: Message;
}