mirror of
https://github.com/danbulant/discord.js
synced 2026-07-09 21:20:54 +00:00
docs(PermissionResolvable): move definition outside of class
Otherwise it won't appear in the docs for some reason
This commit is contained in:
parent
46e8bc44fc
commit
544b14a5ed
1 changed files with 7 additions and 7 deletions
|
|
@ -104,6 +104,7 @@ class Permissions extends BitField {
|
||||||
missingPermissions(permissions, explicit = false) {
|
missingPermissions(permissions, explicit = false) {
|
||||||
return this.missing(permissions, !explicit);
|
return this.missing(permissions, !explicit);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Data that can be resolved to give a permission number. This can be:
|
* Data that can be resolved to give a permission number. This can be:
|
||||||
|
|
@ -111,7 +112,6 @@ class Permissions extends BitField {
|
||||||
* * A permission number
|
* * A permission number
|
||||||
* @typedef {string|number|Permissions|PermissionResolvable[]} PermissionResolvable
|
* @typedef {string|number|Permissions|PermissionResolvable[]} PermissionResolvable
|
||||||
*/
|
*/
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Numeric permission flags. All available properties:
|
* Numeric permission flags. All available properties:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue