commit 439e9b8a6361cbfa8fd15133791f24762897b3c9
parent c66f274641df4a4335271f9d5069b9ac6e50470b
Author: Demonstrandum <moi@knutsen.co>
Date: Thu, 19 Mar 2020 01:48:11 +0000
You should install a typechecking extension, nexi
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/commands/emojify.ts b/lib/commands/emojify.ts
@@ -1,3 +1,5 @@
+import { Message } from 'discord.js';
+
export default home_scope => {
const { message, args }
: { message: Message, args: string[] } = home_scope;
@@ -27,4 +29,4 @@ export default home_scope => {
})
message.channel.send(letters.join(' '));
-};
+};