docs(PermissionResolvable): move definition outside of class

Otherwise it won't appear in the docs for some reason
This commit is contained in:
SpaceEEC
2020-02-16 13:05:47 +01:00
parent 46e8bc44fc
commit 544b14a5ed

View File

@@ -104,14 +104,14 @@ 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:
* * A string (see {@link Permissions.FLAGS}) * * A string (see {@link Permissions.FLAGS})
* * 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: