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