mirror of
https://github.com/danbulant/discord.js
synced 2026-06-18 14:11:09 +00:00
Webpack build for branch data-store-refactor: e69e340e238adafebd60e39aef0dc678990dd1da
This commit is contained in:
parent
46526139f1
commit
8b4b66c0f8
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue