feat: Super Reaction

test: 
This commit is contained in:
Elysia
2023-05-02 22:37:37 +07:00
parent f4dbc57f42
commit 11167aed25
6 changed files with 51 additions and 6 deletions

View File

@@ -573,6 +573,14 @@ class ClientUser extends User {
data: {},
});
}
/**
* Super Reactions
* @returns {Promise<number>}
*/
fetchBurstCredit() {
return this.client.api.users['@me']['burst-credits'].get().then(d => d.amount);
}
}
module.exports = ClientUser;