mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-20 05:23:31 +01:00
docs: add external builder docs links (#7390)
This commit is contained in:
@@ -644,7 +644,7 @@ class Message extends Base {
|
|||||||
* @property {MessageAttachment[]} [attachments] An array of attachments to keep,
|
* @property {MessageAttachment[]} [attachments] An array of attachments to keep,
|
||||||
* all attachments will be kept if omitted
|
* all attachments will be kept if omitted
|
||||||
* @property {FileOptions[]|BufferResolvable[]|MessageAttachment[]} [files] Files to add to the message
|
* @property {FileOptions[]|BufferResolvable[]|MessageAttachment[]} [files] Files to add to the message
|
||||||
* @property {MessageActionRow[]|MessageActionRowOptions[]} [components]
|
* @property {ActionRow[]|ActionRowOptions[]} [components]
|
||||||
* Action rows containing interactive components for the message (buttons, select menus)
|
* Action rows containing interactive components for the message (buttons, select menus)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -105,3 +105,28 @@ module.exports = MessageComponentInteraction;
|
|||||||
* @external APIMessageButton
|
* @external APIMessageButton
|
||||||
* @see {@link https://discord.com/developers/docs/interactions/message-components#button-object}
|
* @see {@link https://discord.com/developers/docs/interactions/message-components#button-object}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @external ButtonComponent
|
||||||
|
* @see {@link https://discord.js.org/#/docs/builders/main/class/ButtonComponent}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @external SelectMenuComponent
|
||||||
|
* @see {@link https://discord.js.org/#/docs/builders/main/class/SelectMenuComponent}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @external SelectMenuOption
|
||||||
|
* @see {@link https://discord.js.org/#/docs/builders/main/class/SelectMenuComponent}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @external ActionRow
|
||||||
|
* @see {@link https://discord.js.org/#/docs/builders/main/class/ActionRow}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @external Embed
|
||||||
|
* @see {@link https://discord.js.org/#/docs/builders/main/class/Embed}
|
||||||
|
*/
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ class Webhook {
|
|||||||
* @property {FileOptions[]|BufferResolvable[]|MessageAttachment[]} [files] See {@link BaseMessageOptions#files}
|
* @property {FileOptions[]|BufferResolvable[]|MessageAttachment[]} [files] See {@link BaseMessageOptions#files}
|
||||||
* @property {MessageMentionOptions} [allowedMentions] See {@link BaseMessageOptions#allowedMentions}
|
* @property {MessageMentionOptions} [allowedMentions] See {@link BaseMessageOptions#allowedMentions}
|
||||||
* @property {MessageAttachment[]} [attachments] Attachments to send with the message
|
* @property {MessageAttachment[]} [attachments] Attachments to send with the message
|
||||||
* @property {MessageActionRow[]|MessageActionRowOptions[]} [components]
|
* @property {ActionRow[]|ActionRowOptions[]} [components]
|
||||||
* Action rows containing interactive components for the message (buttons, select menus)
|
* Action rows containing interactive components for the message (buttons, select menus)
|
||||||
* @property {Snowflake} [threadId] The id of the thread this message belongs to
|
* @property {Snowflake} [threadId] The id of the thread this message belongs to
|
||||||
* <info>For interaction webhooks, this property is ignored</info>
|
* <info>For interaction webhooks, this property is ignored</info>
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ class TextBasedChannel {
|
|||||||
* @property {MessageMentionOptions} [allowedMentions] Which mentions should be parsed from the message content
|
* @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)
|
* (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
|
* @property {FileOptions[]|BufferResolvable[]|MessageAttachment[]} [files] Files to send with the message
|
||||||
* @property {MessageActionRow[]|MessageActionRowOptions[]} [components]
|
* @property {ActionRow[]|ActionRowOptions[]} [components]
|
||||||
* Action rows containing interactive components for the message (buttons, select menus)
|
* Action rows containing interactive components for the message (buttons, select menus)
|
||||||
* @property {MessageAttachment[]} [attachments] Attachments to send in the message
|
* @property {MessageAttachment[]} [attachments] Attachments to send in the message
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user