diff --git a/discord.data-store-refactor.js b/discord.data-store-refactor.js index 09282548..11d8a31d 100644 --- a/discord.data-store-refactor.js +++ b/discord.data-store-refactor.js @@ -8684,21 +8684,18 @@ 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; }