fix(*): add missing imports for custom errors (#5767)

This commit is contained in:
Shubham Parihar
2021-06-07 17:39:43 +05:30
committed by GitHub
parent d1c5b6fe9e
commit e980948de5
7 changed files with 9 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
'use strict';
const BaseManager = require('./BaseManager');
const { TypeError, Error } = require('../errors');
const GuildBan = require('../structures/GuildBan');
const GuildMember = require('../structures/GuildMember');
const Collection = require('../util/Collection');