{"version":3,"file":"SelectMenuComponentInteraction.mjs","sourceRoot":"","sources":["../../src/interactions/SelectMenuComponentInteraction.mts"],"names":[],"mappings":"AACA,OAAO,2BAA2B,MAAM,mCAAmC,CAAC;AAE5E,MAAM,CAAC,OAAO,OAAO,qBAAsB,SAAQ,2BAA2B;IAK1E,YAAY,WAAqD;QAC7D,KAAK,CAAC,WAAW,CAAC,CAAC;QAJvB,oCAAoC;QACpC;;;;;WAAiB;QAIb,IAAI,CAAC,MAAM,GAAG,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC;IAC1C,CAAC;CAEJ","sourcesContent":["import type { APIMessageComponentSelectMenuInteraction, ComponentType } from \"discord-api-types/v10\";\nimport MessageComponentInteraction from \"./MessageComponentInteraction.mjs\";\n\nexport default class SelectMenuInteraction extends MessageComponentInteraction {\n    declare componentType: ComponentType.StringSelect | ComponentType.RoleSelect | ComponentType.UserSelect | ComponentType.ChannelSelect | ComponentType.MentionableSelect;\n    /** The values of the select menu */\n    values: string[];\n\n    constructor(interaction: APIMessageComponentSelectMenuInteraction) {\n        super(interaction);\n        this.values = interaction.data.values;\n    }\n\n}\n"]}