Skip to content

Commit

Permalink
fix: Import errors correctly (#9030)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiralite committed Jan 10, 2023
1 parent 5115de9 commit 6457519
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/managers/UserManager.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict';

const CachedManager = require('./CachedManager');
const { Error } = require('../errors');
const { GuildMember } = require('../structures/GuildMember');
const { Message } = require('../structures/Message');
const ThreadMember = require('../structures/ThreadMember');
Expand Down
1 change: 1 addition & 0 deletions src/structures/AutocompleteInteraction.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

const CommandInteractionOptionResolver = require('./CommandInteractionOptionResolver');
const Interaction = require('./Interaction');
const { Error } = require('../errors');
const { InteractionResponseTypes, ApplicationCommandOptionTypes } = require('../util/Constants');

/**
Expand Down
1 change: 1 addition & 0 deletions src/structures/Sticker.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

const process = require('node:process');
const Base = require('./Base');
const { Error } = require('../errors');
const { StickerFormatTypes, StickerTypes } = require('../util/Constants');
const SnowflakeUtil = require('../util/SnowflakeUtil');

Expand Down

0 comments on commit 6457519

Please sign in to comment.