mirror of
https://github.com/danbulant/discord.js
synced 2026-06-19 14:41:36 +00:00
Webpack build for branch master: 1e47cfdd5d
This commit is contained in:
parent
d4871bd15c
commit
b8c0a907cc
2 changed files with 18 additions and 4 deletions
|
|
@ -13230,7 +13230,9 @@ module.exports = PartialGuildChannel;
|
|||
|
||||
/***/ }),
|
||||
/* 52 */
|
||||
/***/ (function(module, exports) {
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
const Permissions = __webpack_require__(9);
|
||||
|
||||
/**
|
||||
* Represents a permission overwrite for a role or member in a guild channel.
|
||||
|
|
@ -13261,8 +13263,20 @@ class PermissionOverwrites {
|
|||
*/
|
||||
this.type = data.type;
|
||||
|
||||
this.deny = data.deny;
|
||||
this.allow = data.allow;
|
||||
this._denied = data.deny;
|
||||
this._allowed = data.allow;
|
||||
|
||||
/**
|
||||
* The permissions that are denied for the user or role.
|
||||
* @type {Permissions}
|
||||
*/
|
||||
this.denied = new Permissions(this._denied);
|
||||
|
||||
/**
|
||||
* The permissions that are allowed for the user or role.
|
||||
* @type {Permissions}
|
||||
*/
|
||||
this.allowed = new Permissions(this._allowed);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
2
discord.master.min.js
vendored
2
discord.master.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue