From a2209afd153f4e93615094cccbf71c52971fc692 Mon Sep 17 00:00:00 2001 From: Floffah Date: Mon, 19 Jul 2021 16:16:30 +0100 Subject: [PATCH] fix(CommandInteractionOptionResolver): Export CommandInteractionOptionResolver in index.js **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 34cc9f298c68..e2571642e403 100644 --- a/src/index.js +++ b/src/index.js @@ -71,6 +71,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'),