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

7 lines
126 B
TypeScript
Raw Normal View History

2021-07-18 14:14:32 +01:00
import { Message } from "discord.js";
export interface ICommandContext {
name: string;
args: string[];
message: Message;
}