From d79aa2d0d0b186bd28cbfc82f3d6ecf3deb41c50 Mon Sep 17 00:00:00 2001 From: MrMythicalYT <91077061+MrMythicalYT@users.noreply.github.com> Date: Sun, 25 Sep 2022 07:46:10 -0400 Subject: [PATCH] docs: fix duplicate typedefs (#8677) Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- packages/discord.js/src/managers/GuildForumThreadManager.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/discord.js/src/managers/GuildForumThreadManager.js b/packages/discord.js/src/managers/GuildForumThreadManager.js index 03f87319400f..ae4517dac273 100644 --- a/packages/discord.js/src/managers/GuildForumThreadManager.js +++ b/packages/discord.js/src/managers/GuildForumThreadManager.js @@ -17,7 +17,7 @@ class GuildForumThreadManager extends ThreadManager { */ /** - * @typedef {BaseMessageOptions} GuildForumThreadCreateOptions + * @typedef {BaseMessageOptions} GuildForumThreadMessageCreateOptions * @property {stickers} [stickers] The stickers to send with the message * @property {BitFieldResolvable} [flags] The flags to send with the message */ @@ -25,7 +25,7 @@ class GuildForumThreadManager extends ThreadManager { /** * Options for creating a thread. * @typedef {StartThreadOptions} GuildForumThreadCreateOptions - * @property {GuildForumThreadCreateOptions|MessagePayload} message The message associated with the thread post + * @property {GuildForumThreadMessageCreateOptions|MessagePayload} message The message associated with the thread post * @property {Snowflake[]} [appliedTags] The tags to apply to the thread */