Fix type error

Closes #313
This commit is contained in:
Max Isom 2021-09-13 13:18:06 -04:00
parent bd1d026d72
commit 4bce011b0c
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880

View file

@ -1,4 +1,4 @@
import {TextChannel, Message} from 'discord.js'; import {TextChannel, Message, MessageReaction} from 'discord.js';
import delay from 'delay'; import delay from 'delay';
const INITAL_DELAY = 500; const INITAL_DELAY = 500;
@ -20,7 +20,7 @@ export default class {
const icons = ['🐮', '🐴', '🐄']; const icons = ['🐮', '🐴', '🐄'];
const reactions = []; const reactions: MessageReaction[] = [];
let i = 0; let i = 0;
let isRemoving = false; let isRemoving = false;