mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 03:23:29 +01:00
fix: actually fix Readonly typos
This commit is contained in:
@@ -39,13 +39,13 @@ class PermissionOverwrites {
|
||||
|
||||
/**
|
||||
* The permissions that are denied for the user or role.
|
||||
* @type {ReadOnly<Permissions>}
|
||||
* @type {Readonly<Permissions>}
|
||||
*/
|
||||
this.deny = new Permissions(data.deny).freeze();
|
||||
|
||||
/**
|
||||
* The permissions that are allowed for the user or role.
|
||||
* @type {ReadOnly<Permissions>}
|
||||
* @type {Readonly<Permissions>}
|
||||
*/
|
||||
this.allow = new Permissions(data.allow).freeze();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user