@discordjs/builders 0.13.0-dev.1648166909.cedd053 → 0.13.0-dev.1649030892-5748dbe
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1534 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1455 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -649,7 +649,7 @@ declare class ActionRowBuilder<T extends MessageActionRowComponentBuilder | Moda
|
|
|
649
649
|
/**
|
|
650
650
|
* The components within this action row
|
|
651
651
|
*/
|
|
652
|
-
|
|
652
|
+
readonly components: T[];
|
|
653
653
|
constructor({ components, ...data }?: Partial<APIActionRowComponent<APIMessageActionRowComponent | APIModalActionRowComponent>>);
|
|
654
654
|
/**
|
|
655
655
|
* Adds components to this action row.
|
|
@@ -822,7 +822,7 @@ declare namespace Assertions$3 {
|
|
|
822
822
|
}
|
|
823
823
|
|
|
824
824
|
declare class UnsafeModalBuilder implements JSONEncodable<APIModalInteractionResponseCallbackData> {
|
|
825
|
-
|
|
825
|
+
readonly data: Partial<Omit<APIModalInteractionResponseCallbackData, 'components'>>;
|
|
826
826
|
readonly components: ActionRowBuilder<ModalActionRowComponentBuilder>[];
|
|
827
827
|
constructor({ components, ...data }?: Partial<APIModalInteractionResponseCallbackData>);
|
|
828
828
|
/**
|
|
@@ -877,7 +877,7 @@ declare class UnsafeSelectMenuBuilder extends ComponentBuilder<Partial<Omit<APIS
|
|
|
877
877
|
/**
|
|
878
878
|
* The options within this select menu
|
|
879
879
|
*/
|
|
880
|
-
|
|
880
|
+
readonly options: UnsafeSelectMenuOptionBuilder[];
|
|
881
881
|
constructor(data?: Partial<APISelectMenuComponent>);
|
|
882
882
|
/**
|
|
883
883
|
* Sets the placeholder for this select menu
|