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