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; }