blob: a94507283efa0ea13a651ddf463c58b8e42dd1ad (
plain)
1
2
3
4
5
6
7
8
9
|
import {Message} from 'discord.js';
export default interface Command {
name: string;
aliases: string[];
examples: string[][];
requiresVC?: boolean;
execute: (msg: Message, args: string[]) => Promise<void>;
}
|