# BuilderTypes

`variable` in `kit` · v0.2.0

<https://docs.seedcord.org/packages/kit/0.2.0/variables/builder-types>

Available Discord.js builder classes for use with BuilderComponent for commands, embeds, modals, etc.

```ts
const BuilderTypes: {
    command: typeof SlashCommandBuilder;
    context_menu: typeof ContextMenuCommandBuilder;
    subcommand: typeof SlashCommandSubcommandBuilder;
    group: typeof SlashCommandSubcommandGroupBuilder;
    embed: typeof EmbedBuilder;
    modal: typeof ModalBuilder;
    label: typeof LabelBuilder;
    text_input: typeof TextInputBuilder;
    file_upload: typeof FileUploadBuilder;
    checkbox: typeof CheckboxBuilder;
    checkbox_group: typeof CheckboxGroupBuilder;
    checkbox_group_option: typeof CheckboxGroupOptionBuilder;
    radio_group: typeof RadioGroupBuilder;
    radio_group_option: typeof RadioGroupOptionBuilder;
    button: typeof ButtonBuilder;
    menu_string: typeof StringSelectMenuBuilder;
    menu_option_string: typeof StringSelectMenuOptionBuilder;
    menu_user: typeof UserSelectMenuBuilder;
    menu_channel: typeof ChannelSelectMenuBuilder;
    menu_mentionable: typeof MentionableSelectMenuBuilder;
    menu_role: typeof RoleSelectMenuBuilder;
    container: typeof ContainerBuilder;
    text_display: typeof TextDisplayBuilder;
    file: typeof FileBuilder;
    media: typeof MediaGalleryBuilder;
    section: typeof SectionBuilder;
    separator: typeof SeparatorBuilder;
};
```
