Webpack build for branch data-store-refactor: f895ff5fc0689675046a20bbb37675d47e45aca0

This commit is contained in:
Travis CI 2017-08-25 19:29:12 +00:00
parent 06226438d6
commit dd2b19bc4e

View file

@ -4589,7 +4589,7 @@ class Message extends Base {
/**
* A collection of reactions to this message, mapped by the reaction ID
* @type {Collection<Snowflake, MessageReaction>}
* @type {ReactionStore<Snowflake, MessageReaction>}
*/
this.reactions = new ReactionStore(this);
if (data.reactions && data.reactions.length > 0) {
@ -6441,7 +6441,7 @@ class Guild extends Base {
/**
* A collection of channels that are in this guild. The key is the channel's ID, the value is the channel
* @type {Collection<Snowflake, GuildChannel>}
* @type {GuildChannelStore<Snowflake, GuildChannel>}
*/
this.channels = new GuildChannelStore(this);