From 8b4b66c0f8a83d01190ed60edebd72adf5b92e38 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 25 Aug 2017 16:03:11 +0000 Subject: [PATCH] Webpack build for branch data-store-refactor: e69e340e238adafebd60e39aef0dc678990dd1da --- discord.data-store-refactor.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discord.data-store-refactor.js b/discord.data-store-refactor.js index 6947b6b8..03b9e2d0 100644 --- a/discord.data-store-refactor.js +++ b/discord.data-store-refactor.js @@ -8684,18 +8684,21 @@ class TextBasedChannel { /** * A collection containing the messages sent to this channel * @type {Collection} + * @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; }