they can be more than just string/num/bool (#1448)

This commit is contained in:
Gus Caplan
2017-05-21 14:24:36 -05:00
committed by Crawl
parent 8e80b6660c
commit bb2a35a849

View File

@@ -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
*/
/**