From 4bfd5d3e74e61ae65e7e0e66abdb1365f3a5ee72 Mon Sep 17 00:00:00 2001 From: Rodry <38259440+ImRodry@users.noreply.github.com> Date: Tue, 24 Aug 2021 21:21:43 +0100 Subject: [PATCH] docs(GuildChannelCreateOptions): fix #type type (#6502) --- src/managers/GuildChannelManager.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/managers/GuildChannelManager.js b/src/managers/GuildChannelManager.js index 11c990d7c..fc7a7e47b 100644 --- a/src/managers/GuildChannelManager.js +++ b/src/managers/GuildChannelManager.js @@ -94,8 +94,7 @@ class GuildChannelManager extends CachedManager { /** * Options used to create a new channel in a guild. * @typedef {Object} GuildChannelCreateOptions - * @property {string|number} [type='GUILD_TEXT'] The type of the new channel, either `GUILD_TEXT`, `GUILD_VOICE`, - * `GUILD_CATEGORY`, `GUILD_NEWS`, `GUILD_STORE`, or `GUILD_STAGE_VOICE` + * @property {ChannelType|number} [type='GUILD_TEXT'] The type of the new channel. * @property {string} [topic] The topic for the new channel * @property {boolean} [nsfw] Whether the new channel is nsfw * @property {number} [bitrate] Bitrate of the new channel in bits (only voice)