diff --git a/src/util/Structures.js b/src/util/Structures.js index 7059c16a2cd7..bee9d6373cc2 100644 --- a/src/util/Structures.js +++ b/src/util/Structures.js @@ -20,7 +20,6 @@ * * **`Role`** * * **`User`** * * **`CommandInteraction`** - * * **`MessageComponentInteraction`** * * **`ButtonInteraction`** * @typedef {string} ExtendableStructure */ @@ -113,7 +112,6 @@ const structures = { Role: require('../structures/Role'), User: require('../structures/User'), CommandInteraction: require('../structures/CommandInteraction'), - MessageComponentInteraction: require('../structures/MessageComponentInteraction'), ButtonInteraction: require('../structures/ButtonInteraction'), }; diff --git a/typings/index.d.ts b/typings/index.d.ts index 9b5592822d46..c1e6d4695c58 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -2833,6 +2833,7 @@ declare module 'discord.js' { Role: typeof Role; User: typeof User; CommandInteraction: typeof CommandInteraction; + ButtonInteraction: typeof ButtonInteraction; } interface FetchBanOptions {