mirror of
https://github.com/danbulant/discord.js
synced 2026-06-18 22:21:17 +00:00
Webpack build for branch 11.3-dev: b5ff309bf9
This commit is contained in:
parent
ed6a02394e
commit
114c0e3de0
2 changed files with 6 additions and 1 deletions
|
|
@ -3325,6 +3325,7 @@ class Channel {
|
|||
* * `group` - a Group DM channel
|
||||
* * `text` - a guild text channel
|
||||
* * `voice` - a guild voice channel
|
||||
* * `category` - a guild category channel
|
||||
* @type {string}
|
||||
*/
|
||||
this.type = null;
|
||||
|
|
@ -18696,6 +18697,10 @@ const GuildChannel = __webpack_require__(18);
|
|||
* @extends {GuildChannel}
|
||||
*/
|
||||
class CategoryChannel extends GuildChannel {
|
||||
constructor(guild, data) {
|
||||
super(guild, data);
|
||||
this.type = 'category';
|
||||
}
|
||||
/**
|
||||
* The channels that are part of this category
|
||||
* @type {?Collection<Snowflake, GuildChannel>}
|
||||
|
|
|
|||
2
discord.11.3-dev.min.js
vendored
2
discord.11.3-dev.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue