aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces.ts
diff options
context:
space:
mode:
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;
}