From bb2a35a84942a81512d0664e8b4cc840239fc8f7 Mon Sep 17 00:00:00 2001 From: Gus Caplan Date: Sun, 21 May 2017 14:24:36 -0500 Subject: [PATCH] they can be more than just string/num/bool (#1448) --- src/structures/GuildAuditLogs.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/GuildAuditLogs.js b/src/structures/GuildAuditLogs.js index 9202ed231..125844deb 100644 --- a/src/structures/GuildAuditLogs.js +++ b/src/structures/GuildAuditLogs.js @@ -171,8 +171,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 */ /**