mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-13 01:53:30 +01:00
docs: clarify wording for maximum values (#11231)
* docs(FileUpload): clarify wording * chore: missed instances --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
@@ -72,7 +72,7 @@ export class FileUploadBuilder extends ComponentBuilder<APIFileUploadComponent>
|
|||||||
/**
|
/**
|
||||||
* Sets the maximum number of file uploads required.
|
* Sets the maximum number of file uploads required.
|
||||||
*
|
*
|
||||||
* @param maxValues - The maximum values that must be uploaded
|
* @param maxValues - The maximum values that can be uploaded
|
||||||
*/
|
*/
|
||||||
public setMaxValues(maxValues: number) {
|
public setMaxValues(maxValues: number) {
|
||||||
this.data.max_values = maxValues;
|
this.data.max_values = maxValues;
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ export abstract class BaseSelectMenuBuilder<Data extends APISelectMenuComponent>
|
|||||||
/**
|
/**
|
||||||
* Sets the maximum values that must be selected in the select menu.
|
* Sets the maximum values that must be selected in the select menu.
|
||||||
*
|
*
|
||||||
* @param maxValues - The maximum values that must be selected
|
* @param maxValues - The maximum values that can be selected
|
||||||
*/
|
*/
|
||||||
public setMaxValues(maxValues: number) {
|
public setMaxValues(maxValues: number) {
|
||||||
this.data.max_values = maxValues;
|
this.data.max_values = maxValues;
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ const { ComponentType } = require('discord-api-types/v10');
|
|||||||
/**
|
/**
|
||||||
* @typedef {BaseComponentData} FileUploadComponentData
|
* @typedef {BaseComponentData} FileUploadComponentData
|
||||||
* @property {string} customId The custom id of the file upload
|
* @property {string} customId The custom id of the file upload
|
||||||
* @property {number} [minValues] The minimum number of files that can be uploaded (0-10)
|
* @property {number} [minValues] The minimum number of files that must be uploaded (0-10)
|
||||||
* @property {number} [maxValues] The maximum number of files that can be uploaded (1-10)
|
* @property {number} [maxValues] The maximum number of files that can be uploaded (1-10)
|
||||||
* @property {boolean} [required] Whether this component is required in modals
|
* @property {boolean} [required] Whether this component is required in modals
|
||||||
*/
|
*/
|
||||||
@@ -57,7 +57,7 @@ const { ComponentType } = require('discord-api-types/v10');
|
|||||||
* @property {string} customId The custom id of the select menu
|
* @property {string} customId The custom id of the select menu
|
||||||
* @property {boolean} [disabled] Whether the select menu is disabled or not
|
* @property {boolean} [disabled] Whether the select menu is disabled or not
|
||||||
* @property {number} [maxValues] The maximum amount of options that can be selected
|
* @property {number} [maxValues] The maximum amount of options that can be selected
|
||||||
* @property {number} [minValues] The minimum amount of options that can be selected
|
* @property {number} [minValues] The minimum amount of options that must be selected
|
||||||
* @property {string} [placeholder] The placeholder of the select menu
|
* @property {string} [placeholder] The placeholder of the select menu
|
||||||
* @property {boolean} [required] Whether this component is required in modals
|
* @property {boolean} [required] Whether this component is required in modals
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user