mirror of
https://github.com/danbulant/discord.js
synced 2026-06-19 22:51:32 +00:00
Webpack build for branch master: 1ddae43fed
This commit is contained in:
parent
3e0e575f36
commit
4d3370c082
1 changed files with 7 additions and 0 deletions
|
|
@ -26336,6 +26336,10 @@ const Actions = {
|
|||
EMOJI_DELETE: 62,
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Audit logs entries are held in this class
|
||||
*/
|
||||
class GuildAuditLogs {
|
||||
constructor(guild, data) {
|
||||
if (data.users) for (const user of data.users) guild.client.dataManager.newUser(user);
|
||||
|
|
@ -26422,6 +26426,9 @@ class GuildAuditLogs {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Audit logs entry
|
||||
*/
|
||||
class GuildAuditLogsEntry {
|
||||
constructor(guild, data) {
|
||||
const targetType = GuildAuditLogs.targetType(data.action_type);
|
||||
|
|
|
|||
Loading…
Reference in a new issue