diff --git a/src/structures/GuildAuditLogs.js b/src/structures/GuildAuditLogs.js index 163c89d01..8cc95779a 100644 --- a/src/structures/GuildAuditLogs.js +++ b/src/structures/GuildAuditLogs.js @@ -172,8 +172,8 @@ class GuildAuditLogsEntry { * An entry in the audit log representing a specific change * @typedef {object} AuditLogChange * @property {string} key The property that was changed, e.g. `nick` for nickname changes - * @property {string|boolean|number} [old] The old value of the change, e.g. for nicknames, the old nickname - * @property {string|boolean|number} [new] The new value of the change, e.g. for nicknames, the new nickname + * @property {*} [old] The old value of the change, e.g. for nicknames, the old nickname + * @property {*} [new] The new value of the change, e.g. for nicknames, the new nickname */ /**