diff --git a/src/structures/PermissionOverwrites.js b/src/structures/PermissionOverwrites.js index f9e7d4220..9716b6cbb 100644 --- a/src/structures/PermissionOverwrites.js +++ b/src/structures/PermissionOverwrites.js @@ -23,9 +23,16 @@ class PermissionOverwrites { */ this.id = data.id; + /** + * The type of a permission overwrite. It can be one of: + * * member + * * role + * @typedef {string} OverwriteType + */ + /** * The type of this overwrite - * @type {string} + * @type {OverwriteType} */ this.type = data.type;