mirror of
https://github.com/danbulant/discord.js
synced 2026-07-07 04:00:42 +00:00
Webpack build for branch master: 43363172c2
This commit is contained in:
parent
d674273c37
commit
2775520fad
1 changed files with 8 additions and 1 deletions
|
|
@ -2192,6 +2192,13 @@ module.exports = Permissions;
|
||||||
|
|
||||||
const { ActivityTypes, ActivityFlags } = __webpack_require__(0);
|
const { ActivityTypes, ActivityFlags } = __webpack_require__(0);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Activity sent in a message.
|
||||||
|
* @typedef {Object} MessageActivity
|
||||||
|
* @property {string} [partyID] Id of the party represented in activity
|
||||||
|
* @property {number} [type] Type of activity sent
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a user's presence.
|
* Represents a user's presence.
|
||||||
*/
|
*/
|
||||||
|
|
@ -7283,7 +7290,7 @@ class Message extends Base {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Group activity
|
* Group activity
|
||||||
* @type {?Object}
|
* @type {?MessageActivity}
|
||||||
*/
|
*/
|
||||||
this.activity = data.activity ? {
|
this.activity = data.activity ? {
|
||||||
partyID: data.activity.party_id,
|
partyID: data.activity.party_id,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue