Webpack build for branch data-store-refactor: e69e340e238adafebd60e39aef0dc678990dd1da

This commit is contained in:
Travis CI 2017-08-25 16:03:11 +00:00
parent 46526139f1
commit 8b4b66c0f8

View file

@ -8684,18 +8684,21 @@ class TextBasedChannel {
/**
* A collection containing the messages sent to this channel
* @type {Collection<Snowflake, Message>}
* @memberof TextBasedChannel
*/
this.messages = new MessageStore(this);
/**
* The ID of the last message in the channel, if one was sent
* @type {?Snowflake}
* @memberof TextBasedChannel
*/
this.lastMessageID = null;
/**
* The Message object of the last message in the channel, if one was sent
* @type {?Message}
* @memberof TextBasedChannel
*/
this.lastMessage = null;
}