feat(PartialGroupDMChannel): Add recipients & fix name (#6713)

This commit is contained in:
Jiralite
2021-10-02 12:40:40 +01:00
committed by GitHub
parent 3f1100976f
commit 2803db683d
2 changed files with 19 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ class PartialGroupDMChannel extends Channel {
/**
* The name of this Group DM Channel
* @type {string}
* @type {?string}
*/
this.name = data.name;
@@ -22,6 +22,18 @@ class PartialGroupDMChannel extends Channel {
* @type {?string}
*/
this.icon = data.icon;
/**
* Recipient data received in a {@link PartialGroupDMChannel}.
* @typedef {Object} PartialRecipient
* @property {string} username The username of the recipient
*/
/**
* The recipients of this Group DM Channel.
* @type {PartialRecipient[]}
*/
this.recipients = data.recipients;
}
/**