aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces.ts
diff options
context:
space:
mode:
authorMax Isom <[email protected]>2020-03-09 15:00:18 -0500
committerMax Isom <[email protected]>2020-03-09 15:00:18 -0500
commit652cc2e5efed6ddef593570ee90634cbc1c452bb (patch)
tree6df810ab7715051c6cfe0613e7d338906260f36a /src/interfaces.ts
parenteca84c8b6964af29948510a02ebfeb5f23244921 (diff)
downloadmuse-652cc2e5efed6ddef593570ee90634cbc1c452bb.tar.xz
muse-652cc2e5efed6ddef593570ee90634cbc1c452bb.zip
Add config command
Diffstat (limited to 'src/interfaces.ts')
-rw-r--r--src/interfaces.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces.ts b/src/interfaces.ts
index b002a65..6909d47 100644
--- a/src/interfaces.ts
+++ b/src/interfaces.ts
@@ -1,7 +1,7 @@
-import Discord from 'discord.js';
+import {Message} from 'discord.js';
export interface CommandHandler {
name: string;
description: string;
- execute: (msg: Discord.Message, args: string[]) => void;
+ execute: (msg: Message, args: string[]) => void;
}