From 8ccfd6e07b3208568c495110c80990366637818e Mon Sep 17 00:00:00 2001 From: Floffah Date: Tue, 20 Jul 2021 00:18:19 +0100 Subject: [PATCH] =?UTF-8?q?fix(CommandInteractionOptionResolver):=20Export?= =?UTF-8?q?=20CommandInteractionOptio=E2=80=A6=20(#6146)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Please describe the changes this PR makes and why it should be merged:** CommandInteractionOptionResolver is exported in the typings, but not in the index.js file **Status and versioning classification:** - Code changes have been tested against the Discord API, or there are no code changes - I know how to update typings and have done so, or typings don't need updating --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index ac54ec16d..655bd2d18 100644 --- a/src/index.js +++ b/src/index.js @@ -72,6 +72,7 @@ module.exports = { ClientUser: require('./structures/ClientUser'), Collector: require('./structures/interfaces/Collector'), CommandInteraction: require('./structures/CommandInteraction'), + CommandInteractionOptionResolver: require('./structures/CommandInteractionOptionResolver.js'), DMChannel: require('./structures/DMChannel'), Emoji: require('./structures/Emoji'), Guild: require('./structures/Guild'),