From e0d24f7c6c03c5219a366ca5a0998fe894a1697b Mon Sep 17 00:00:00 2001 From: DD Date: Mon, 31 Oct 2022 14:24:17 +0200 Subject: [PATCH] fix: bad auto importe Co-authored-by: Julian Vennen --- packages/discord.js/src/structures/SelectMenuBuilder.js | 4 ++-- packages/discord.js/src/structures/SelectMenuComponent.js | 4 ++-- packages/discord.js/src/structures/SelectMenuInteraction.js | 4 ++-- packages/discord.js/src/structures/SelectMenuOptionBuilder.js | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/discord.js/src/structures/SelectMenuBuilder.js b/packages/discord.js/src/structures/SelectMenuBuilder.js index 5615ec526e76..caa971b468e9 100644 --- a/packages/discord.js/src/structures/SelectMenuBuilder.js +++ b/packages/discord.js/src/structures/SelectMenuBuilder.js @@ -1,7 +1,7 @@ 'use strict'; -const { process } = require('node:process'); -const { StringSelectMenuBuilder } = require('./StringSelectMenuBuilder'); +const process = require('node:process'); +const StringSelectMenuBuilder = require('./StringSelectMenuBuilder'); let deprecationEmitted = false; diff --git a/packages/discord.js/src/structures/SelectMenuComponent.js b/packages/discord.js/src/structures/SelectMenuComponent.js index 487a529a82e1..850c985275c2 100644 --- a/packages/discord.js/src/structures/SelectMenuComponent.js +++ b/packages/discord.js/src/structures/SelectMenuComponent.js @@ -1,7 +1,7 @@ 'use strict'; -const { process } = require('node:process'); -const { StringSelectMenuComponent } = require('./StringSelectMenuComponent'); +const process = require('node:process'); +const StringSelectMenuComponent = require('./StringSelectMenuComponent'); let deprecationEmitted = false; diff --git a/packages/discord.js/src/structures/SelectMenuInteraction.js b/packages/discord.js/src/structures/SelectMenuInteraction.js index 4a8e475a3680..9ee092d008b1 100644 --- a/packages/discord.js/src/structures/SelectMenuInteraction.js +++ b/packages/discord.js/src/structures/SelectMenuInteraction.js @@ -1,7 +1,7 @@ 'use strict'; -const { process } = require('node:process'); -const { StringSelectMenuInteraction } = require('./StringSelectMenuInteraction'); +const process = require('node:process'); +const StringSelectMenuInteraction = require('./StringSelectMenuInteraction'); let deprecationEmitted = false; diff --git a/packages/discord.js/src/structures/SelectMenuOptionBuilder.js b/packages/discord.js/src/structures/SelectMenuOptionBuilder.js index 7c61006081a1..ac4d265379d7 100644 --- a/packages/discord.js/src/structures/SelectMenuOptionBuilder.js +++ b/packages/discord.js/src/structures/SelectMenuOptionBuilder.js @@ -1,7 +1,7 @@ 'use strict'; -const { process } = require('node:process'); -const { StringSelectMenuOptionBuilder } = require('./StringSelectMenuOptionBuilder'); +const process = require('node:process'); +const StringSelectMenuOptionBuilder = require('./StringSelectMenuOptionBuilder'); let deprecationEmitted = false;