diff --git a/packages/discord.js/src/managers/GuildChannelManager.js b/packages/discord.js/src/managers/GuildChannelManager.js index aa43dc350011..012821cfcd76 100644 --- a/packages/discord.js/src/managers/GuildChannelManager.js +++ b/packages/discord.js/src/managers/GuildChannelManager.js @@ -164,7 +164,7 @@ class GuildChannelManager extends CachedManager { /** * @typedef {ChannelWebhookCreateOptions} WebhookCreateOptions - * @property {GuildChannelResolvable} channel The channel to create the webhook for + * @property {TextChannel|NewsChannel|VoiceChannel|Snowflake} channel The channel to create the webhook for */ /** diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index 9c6ba1a95427..720cc6c36c90 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -4152,7 +4152,7 @@ export interface ChannelWebhookCreateOptions { } export interface WebhookCreateOptions extends ChannelWebhookCreateOptions { - channel: GuildChannelResolvable; + channel: TextChannel | NewsChannel | VoiceChannel | Snowflake; } export interface ClientEvents {