diff --git a/src/structures/Message.js b/src/structures/Message.js index 33e8da44b..2dc8dcc76 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -646,8 +646,6 @@ class Message extends Base { /** * Options provided when sending a message as an inline reply. * @typedef {BaseMessageOptions} ReplyMessageOptions - * @property {MessageEmbed[]|Object[]} [embeds] The embeds for the message - * (see [here](https://discord.com/developers/docs/resources/channel#embed-object) for more details) * @property {boolean} [failIfNotExists=true] Whether to error if the referenced message * does not exist (creates a standard message in this case when false) */ diff --git a/src/structures/Webhook.js b/src/structures/Webhook.js index 6fb278a4b..26042b498 100644 --- a/src/structures/Webhook.js +++ b/src/structures/Webhook.js @@ -92,7 +92,6 @@ class Webhook { * @typedef {BaseMessageOptions} WebhookMessageOptions * @property {string} [username=this.name] Username override for the message * @property {string} [avatarURL] Avatar URL override for the message - * @property {MessageEmbed[]|Object[]} [embeds] An array of embeds for the message */ /** diff --git a/src/structures/interfaces/InteractionResponses.js b/src/structures/interfaces/InteractionResponses.js index 6ffd3fd82..da23b726e 100644 --- a/src/structures/interfaces/InteractionResponses.js +++ b/src/structures/interfaces/InteractionResponses.js @@ -20,7 +20,6 @@ class InteractionResponses { * Options for a reply to an {@link Interaction}. * @typedef {BaseMessageOptions} InteractionReplyOptions * @property {boolean} [ephemeral] Whether the reply should be ephemeral - * @property {MessageEmbed[]|Object[]} [embeds] An array of embeds for the message */ /** diff --git a/src/structures/interfaces/TextBasedChannel.js b/src/structures/interfaces/TextBasedChannel.js index 24a3d750d..0d3a2ce8a 100644 --- a/src/structures/interfaces/TextBasedChannel.js +++ b/src/structures/interfaces/TextBasedChannel.js @@ -57,6 +57,8 @@ class TextBasedChannel { * @property {boolean} [tts=false] Whether or not the message should be spoken aloud * @property {string} [nonce=''] The nonce for the message * @property {string} [content=''] The content for the message + * @property {MessageEmbed[]|Object[]} [embeds] The embeds for the message + * (see [here](https://discord.com/developers/docs/resources/channel#embed-object) for more details) * @property {MessageMentionOptions} [allowedMentions] Which mentions should be parsed from the message content * (see [here](https://discord.com/developers/docs/resources/channel#allowed-mentions-object) for more details) * @property {FileOptions[]|BufferResolvable[]|MessageAttachment[]} [files] Files to send with the message @@ -70,8 +72,6 @@ class TextBasedChannel { /** * Options provided when sending or editing a message. * @typedef {BaseMessageOptions} MessageOptions - * @property {MessageEmbed[]|Object[]} [embeds] The embeds for the message - * (see [here](https://discord.com/developers/docs/resources/channel#embed-object) for more details) * @property {ReplyOptions} [reply] The options for replying to a message */