* Returns a new set of permissions with the provided permissions removed * @param perms The permissions to remove. * @returns The resulting permissions.
(...perms: PermissionResolvable[])
| 200 | * @returns The resulting permissions. |
| 201 | */ |
| 202 | remove(...perms: PermissionResolvable[]): Permissions { |
| 203 | return new Permissions(this.value & ~Permissions.resolve(...perms)); |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * @returns The current permissions value as an array of strings. |
no test coverage detected