2020-03-09 21:00:18 +01:00
|
|
|
import {Message} from 'discord.js';
|
2020-03-09 17:57:39 +01:00
|
|
|
|
|
|
|
export interface CommandHandler {
|
|
|
|
name: string;
|
|
|
|
description: string;
|
2020-03-09 21:00:18 +01:00
|
|
|
execute: (msg: Message, args: string[]) => void;
|
2020-03-09 17:57:39 +01:00
|
|
|
}
|