export declare class TextInputBuilder extends ComponentBuilder<APITextInputComponent> implements Equatable<APITextInputComponent | JSONEncodable<APITextInputComponent>>

A builder that creates API-compatible JSON data for text inputs.

Constructors

constructor()

Creates a new text input from API data.

Examples:Creating a select menu option from an API data object:
const textInput = new TextInputBuilder({
	custom_id: 'a cool select menu',
	label: 'Type something',
	style: TextInputStyle.Short,
});
Creating a select menu option using setters and API data:
const textInput = new TextInputBuilder({
	label: 'Type something else',
})
	.setCustomId('woah')
	.setStyle(TextInputStyle.Paragraph);

The API data associated with this component.

Inherited from: ComponentBuilder

Whether this is equal to another structure.

setCustomId(
customId: string
) : this

Sets the custom id for this text input.

setLabel(
label: string
) : this

Sets the label for this text input.

setMaxLength(
maxLength: number
) : this

Sets the maximum length of text for this text input.

setMinLength(
minLength: number
) : this

Sets the minimum length of text for this text input.

setPlaceholder(
placeholder: string
) : this

Sets the placeholder for this text input.

setRequired(
required?: boolean
) : this

Sets whether this text input is required.

setStyle() : this

Sets the style for this text input.

setValue(
value: string
) : this

Sets the value for this text input.

Serializes this builder to API-compatible JSON data.