From 1b1289b35e2f8cd21341351549e6ac52fd08cb34 Mon Sep 17 00:00:00 2001 From: BannerBomb Date: Mon, 25 Nov 2019 10:17:30 -0500 Subject: [PATCH] misc(index): export Store- and NewsChannel (#3594) * Added Store and NewsChannel to exports Added the StoreChannel and NewsChannel structures to the module exports. * keeping the list in alphabetical order I moved the StoreChannel and NewsChannel exports that I added in the last commit in their right position to keep things alphabetized. --- src/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.js b/src/index.js index 77c56336d..2d776e7ca 100644 --- a/src/index.js +++ b/src/index.js @@ -79,6 +79,7 @@ module.exports = { MessageEmbed: require('./structures/MessageEmbed'), MessageMentions: require('./structures/MessageMentions'), MessageReaction: require('./structures/MessageReaction'), + NewsChannel: require('./structures/NewsChannel'), PermissionOverwrites: require('./structures/PermissionOverwrites'), Presence: require('./structures/Presence').Presence, ClientPresence: require('./structures/ClientPresence'), @@ -86,6 +87,7 @@ module.exports = { ReactionEmoji: require('./structures/ReactionEmoji'), RichPresenceAssets: require('./structures/Presence').RichPresenceAssets, Role: require('./structures/Role'), + StoreChannel: require('./structures/StoreChannel'), Team: require('./structures/Team'), TeamMember: require('./structures/TeamMember'), TextChannel: require('./structures/TextChannel'),