3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-07 19:17:19 +00:00

Possible fix for module error on Node.js 13 and 14

This commit is contained in:
Dragory 2020-05-08 03:13:30 +03:00
parent b251942e40
commit 0de53d1fb4
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
9 changed files with 13 additions and 12 deletions

View file

@ -6,7 +6,7 @@ import { ZeppelinPlugin } from "./ZeppelinPlugin";
import { GuildSavedMessages } from "../data/GuildSavedMessages";
import { Queue } from "../Queue";
import { ReactionRole } from "../data/entities/ReactionRole";
import DiscordRESTError from "eris/lib/errors/DiscordRESTError"; // tslint:disable-line
import DiscordRESTError = require("eris/lib/errors/DiscordRESTError.js"); // tslint:disable-line
import * as t from "io-ts";
import { ERRORS, RecoverablePluginError } from "../RecoverablePluginError";
import Timeout = NodeJS.Timeout;