mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 19:43:29 +01:00
docs(MappedComponentTypes): fix "inpiut" typo (#10306)
* Fix typo in components Fixes a typo in components. * docs: an -> a --------- Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com>
This commit is contained in:
@@ -23,31 +23,31 @@ export interface MappedComponentTypes {
|
|||||||
*/
|
*/
|
||||||
[ComponentType.ActionRow]: ActionRowBuilder<AnyComponentBuilder>;
|
[ComponentType.ActionRow]: ActionRowBuilder<AnyComponentBuilder>;
|
||||||
/**
|
/**
|
||||||
* The button component type is associated with an {@link ButtonBuilder}.
|
* The button component type is associated with a {@link ButtonBuilder}.
|
||||||
*/
|
*/
|
||||||
[ComponentType.Button]: ButtonBuilder;
|
[ComponentType.Button]: ButtonBuilder;
|
||||||
/**
|
/**
|
||||||
* The string select component type is associated with an {@link StringSelectMenuBuilder}.
|
* The string select component type is associated with a {@link StringSelectMenuBuilder}.
|
||||||
*/
|
*/
|
||||||
[ComponentType.StringSelect]: StringSelectMenuBuilder;
|
[ComponentType.StringSelect]: StringSelectMenuBuilder;
|
||||||
/**
|
/**
|
||||||
* The text inpiut component type is associated with an {@link TextInputBuilder}.
|
* The text input component type is associated with a {@link TextInputBuilder}.
|
||||||
*/
|
*/
|
||||||
[ComponentType.TextInput]: TextInputBuilder;
|
[ComponentType.TextInput]: TextInputBuilder;
|
||||||
/**
|
/**
|
||||||
* The user select component type is associated with an {@link UserSelectMenuBuilder}.
|
* The user select component type is associated with a {@link UserSelectMenuBuilder}.
|
||||||
*/
|
*/
|
||||||
[ComponentType.UserSelect]: UserSelectMenuBuilder;
|
[ComponentType.UserSelect]: UserSelectMenuBuilder;
|
||||||
/**
|
/**
|
||||||
* The role select component type is associated with an {@link RoleSelectMenuBuilder}.
|
* The role select component type is associated with a {@link RoleSelectMenuBuilder}.
|
||||||
*/
|
*/
|
||||||
[ComponentType.RoleSelect]: RoleSelectMenuBuilder;
|
[ComponentType.RoleSelect]: RoleSelectMenuBuilder;
|
||||||
/**
|
/**
|
||||||
* The mentionable select component type is associated with an {@link MentionableSelectMenuBuilder}.
|
* The mentionable select component type is associated with a {@link MentionableSelectMenuBuilder}.
|
||||||
*/
|
*/
|
||||||
[ComponentType.MentionableSelect]: MentionableSelectMenuBuilder;
|
[ComponentType.MentionableSelect]: MentionableSelectMenuBuilder;
|
||||||
/**
|
/**
|
||||||
* The channel select component type is associated with an {@link ChannelSelectMenuBuilder}.
|
* The channel select component type is associated with a {@link ChannelSelectMenuBuilder}.
|
||||||
*/
|
*/
|
||||||
[ComponentType.ChannelSelect]: ChannelSelectMenuBuilder;
|
[ComponentType.ChannelSelect]: ChannelSelectMenuBuilder;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user