import type { APIMessageComponentSelectMenuInteraction, ComponentType } from "discord-api-types/v10"; import MessageComponentInteraction from "./MessageComponentInteraction.mjs"; export default class SelectMenuInteraction extends MessageComponentInteraction { componentType: ComponentType.StringSelect | ComponentType.RoleSelect | ComponentType.UserSelect | ComponentType.ChannelSelect | ComponentType.MentionableSelect; /** The values of the select menu */ values: string[]; constructor(interaction: APIMessageComponentSelectMenuInteraction); }