diff --git a/src/builders/SelectMenu.ts b/src/builders/SelectMenu.ts index 8990594..a31e4b5 100644 --- a/src/builders/SelectMenu.ts +++ b/src/builders/SelectMenu.ts @@ -1,12 +1,5 @@ import type { EmojiResolvable, RestOrArray } from '../common'; import { resolvePartialEmoji } from '../common/it/utils'; -import type { - ChannelSelectMenuInteraction, - ComponentInteraction, - MentionableSelectMenuInteraction, - RoleSelectMenuInteraction, - UserSelectMenuInteraction, -} from '../structures'; import { type APIChannelSelectComponent, type APIMentionableSelectComponent, @@ -49,14 +42,12 @@ function mappedDefault( * @template Select - The type of APISelectMenuComponent. * @template Interaction - The type of interaction. * @example - * const selectMenu = new SelectMenu(); + * const selectMenu = new SelectMenu(); * selectMenu.setCustomId("user-select-menu"); * selectMenu.setPlaceholder("Select a user"); */ export class SelectMenu< Select extends APISelectMenuComponent = APISelectMenuComponent, - //@ts-expect-error - Interaction = ComponentInteraction, > extends BaseComponentBuilder