mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-14 13:45:28 +01:00
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import {Message} from 'discord.js';
|
|
|
|
export default interface Command {
|
|
name: string;
|
|
aliases: string[];
|
|
examples: string[][];
|
|
requiresVC?: boolean;
|
|
execute: (msg: Message, args: string[]) => Promise<void>;
|
|
}
|