muse/src/commands/index.ts

8 lines
173 B
TypeScript
Raw Normal View History

2020-03-13 04:41:26 +01:00
import {Message} from 'discord.js';
export default interface Command {
name: string;
description: string;
execute: (msg: Message, args: string[]) => Promise<void>;
}