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