diff --git a/src/managers/GuildChannelManager.js b/src/managers/GuildChannelManager.js index 0558187c5..8212bcf2c 100644 --- a/src/managers/GuildChannelManager.js +++ b/src/managers/GuildChannelManager.js @@ -175,7 +175,7 @@ class GuildChannelManager extends CachedManager { /** * Creates a webhook for the channel. - * @param {GuildChannelResolvable} channel The channel to create the webhook for + * @param {TextChannel|NewsChannel|VoiceChannel|Snowflake} channel The channel to create the webhook for * @param {string} name The name of the webhook * @param {ChannelWebhookCreateOptions} [options] Options for creating the webhook * @returns {Promise} Returns the created Webhook diff --git a/typings/index.d.ts b/typings/index.d.ts index f037d607f..71eae0780 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -3229,7 +3229,7 @@ export class GuildChannelManager extends CachedManager; public edit(channel: GuildChannelResolvable, data: ChannelData, reason?: string): Promise; public fetch(id: Snowflake, options?: BaseFetchOptions): Promise;