feat: Super Reaction

#9336 djs
This commit is contained in:
Elysia
2023-05-02 23:34:57 +07:00
parent 9ed4e6bda6
commit 4b2b0718a3
2 changed files with 27 additions and 3 deletions

View File

@@ -66,10 +66,28 @@ class MessageReaction {
if ('burst_colors' in data) {
/**
* Burst colors of the reaction
* @type {?string[]}
* HEX colors used for super reaction
* @type {string[]}
*/
this.burstColors ??= data.burst_colors;
this.burstColors = data.burst_colors;
}
if ('count_details' in data) {
/**
* The reaction count details object contains information about super and normal reaction counts.
* @typedef {Object} ReactionCountDetailsData
* @property {number} burst Count of super reaction
* @property {number} normal Count of normal reaction
*/
/**
* The reaction count details object contains information about super and normal reaction counts.
* @type {?ReactionCountDetailsData}
*/
this.countDetails = {
burst: data.count_details.burst,
normal: data.count_details.normal,
};
}
}