diff options
Diffstat (limited to 'src/interfaces.ts')
| -rw-r--r-- | src/interfaces.ts | 4 |
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; } |
