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