diff options
| author | Max Isom <[email protected]> | 2021-09-13 13:18:06 -0400 |
|---|---|---|
| committer | Max Isom <[email protected]> | 2021-09-13 13:18:06 -0400 |
| commit | 4bce011b0cea52b0ed14a80beea9d0ddf0901e23 (patch) | |
| tree | 9de7babef5c5f4e7b9b8c4ad36ad4a17d69800d6 /src | |
| parent | bd1d026d7209bc8bd2bcb4f5997c86a7c3833df1 (diff) | |
| download | muse-4bce011b0cea52b0ed14a80beea9d0ddf0901e23.tar.xz muse-4bce011b0cea52b0ed14a80beea9d0ddf0901e23.zip | |
Fix type error
Closes #313
Diffstat (limited to 'src')
| -rw-r--r-- | src/utils/loading-message.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/loading-message.ts b/src/utils/loading-message.ts index 115aff2..a5a2fa1 100644 --- a/src/utils/loading-message.ts +++ b/src/utils/loading-message.ts @@ -1,4 +1,4 @@ -import {TextChannel, Message} from 'discord.js'; +import {TextChannel, Message, MessageReaction} from 'discord.js'; import delay from 'delay'; const INITAL_DELAY = 500; @@ -20,7 +20,7 @@ export default class { const icons = ['🐮', '🐴', '🐄']; - const reactions = []; + const reactions: MessageReaction[] = []; let i = 0; let isRemoving = false; |
