aboutsummaryrefslogtreecommitdiff
path: root/node_modules/discord.js/src/index.js
diff options
context:
space:
mode:
authorAlee14 <alee14498@gmail.com>2017-03-26 15:18:10 -0400
committerAlee14 <alee14498@gmail.com>2017-03-26 15:18:10 -0400
commit29433e2f7dbd0e4a73d3c78ffe1005b922fb5982 (patch)
treeaa0ad3fe59468cbe452ee597e914839b68c01436 /node_modules/discord.js/src/index.js
parent878fefb4c4e1f12b804ae5c0def433fa873f4c8b (diff)
downloadAleeBot-29433e2f7dbd0e4a73d3c78ffe1005b922fb5982.tar.gz
AleeBot-29433e2f7dbd0e4a73d3c78ffe1005b922fb5982.tar.bz2
AleeBot-29433e2f7dbd0e4a73d3c78ffe1005b922fb5982.zip
Don't mind me i'm adding the discord.js files
Diffstat (limited to 'node_modules/discord.js/src/index.js')
-rw-r--r--node_modules/discord.js/src/index.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/node_modules/discord.js/src/index.js b/node_modules/discord.js/src/index.js
new file mode 100644
index 0000000..85326bf
--- /dev/null
+++ b/node_modules/discord.js/src/index.js
@@ -0,0 +1,47 @@
+module.exports = {
+ Client: require('./client/Client'),
+ WebhookClient: require('./client/WebhookClient'),
+ Shard: require('./sharding/Shard'),
+ ShardClientUtil: require('./sharding/ShardClientUtil'),
+ ShardingManager: require('./sharding/ShardingManager'),
+
+ Collection: require('./util/Collection'),
+ splitMessage: require('./util/SplitMessage'),
+ escapeMarkdown: require('./util/EscapeMarkdown'),
+ fetchRecommendedShards: require('./util/FetchRecommendedShards'),
+
+ Channel: require('./structures/Channel'),
+ ClientOAuth2Application: require('./structures/ClientOAuth2Application'),
+ ClientUser: require('./structures/ClientUser'),
+ DMChannel: require('./structures/DMChannel'),
+ Emoji: require('./structures/Emoji'),
+ EvaluatedPermissions: require('./structures/EvaluatedPermissions'),
+ Game: require('./structures/Presence').Game,
+ GroupDMChannel: require('./structures/GroupDMChannel'),
+ Guild: require('./structures/Guild'),
+ GuildChannel: require('./structures/GuildChannel'),
+ GuildMember: require('./structures/GuildMember'),
+ Invite: require('./structures/Invite'),
+ Message: require('./structures/Message'),
+ MessageAttachment: require('./structures/MessageAttachment'),
+ MessageCollector: require('./structures/MessageCollector'),
+ MessageEmbed: require('./structures/MessageEmbed'),
+ MessageReaction: require('./structures/MessageReaction'),
+ OAuth2Application: require('./structures/OAuth2Application'),
+ PartialGuild: require('./structures/PartialGuild'),
+ PartialGuildChannel: require('./structures/PartialGuildChannel'),
+ PermissionOverwrites: require('./structures/PermissionOverwrites'),
+ Presence: require('./structures/Presence').Presence,
+ ReactionEmoji: require('./structures/ReactionEmoji'),
+ RichEmbed: require('./structures/RichEmbed'),
+ Role: require('./structures/Role'),
+ TextChannel: require('./structures/TextChannel'),
+ User: require('./structures/User'),
+ VoiceChannel: require('./structures/VoiceChannel'),
+ Webhook: require('./structures/Webhook'),
+
+ version: require('../package').version,
+ Constants: require('./util/Constants'),
+};
+
+if (typeof window !== 'undefined') window.Discord = module.exports; // eslint-disable-line no-undef