mirror of
https://github.com/danbulant/discord.js
synced 2026-07-08 12:40:50 +00:00
docs(CategoryChannel): Fix children being incorrectly marked as nullable (#4620)
This commit is contained in:
parent
a663ea4d2c
commit
f628981f42
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ const GuildChannel = require('./GuildChannel');
|
||||||
class CategoryChannel extends GuildChannel {
|
class CategoryChannel extends GuildChannel {
|
||||||
/**
|
/**
|
||||||
* Channels that are a part of this category
|
* Channels that are a part of this category
|
||||||
* @type {?Collection<Snowflake, GuildChannel>}
|
* @type {Collection<Snowflake, GuildChannel>}
|
||||||
* @readonly
|
* @readonly
|
||||||
*/
|
*/
|
||||||
get children() {
|
get children() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue