aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces.ts
diff options
context:
space:
mode:
authorMax Isom <[email protected]>2020-03-09 11:57:39 -0500
committerMax Isom <[email protected]>2020-03-09 11:57:39 -0500
commiteca84c8b6964af29948510a02ebfeb5f23244921 (patch)
treeffa8a25a19ea9e57b33db661c28a80104a0087e7 /src/interfaces.ts
parentafadcb9ee5482c0a1c52b3d55e948e2a8a9ac0cb (diff)
downloadmuse-eca84c8b6964af29948510a02ebfeb5f23244921.tar.xz
muse-eca84c8b6964af29948510a02ebfeb5f23244921.zip
Inital commit
Diffstat (limited to 'src/interfaces.ts')
-rw-r--r--src/interfaces.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/interfaces.ts b/src/interfaces.ts
new file mode 100644
index 0000000..b002a65
--- /dev/null
+++ b/src/interfaces.ts
@@ -0,0 +1,7 @@
+import Discord from 'discord.js';
+
+export interface CommandHandler {
+ name: string;
+ description: string;
+ execute: (msg: Discord.Message, args: string[]) => void;
+}