Interface StringSelectMenuComponentData

interface StringSelectMenuComponentData {
    customId: string;
    disabled?: boolean;
    execute: StringSelectMenuInteractionExecute;
    maxValues?: number;
    minValues?: number;
    options: readonly SelectMenuComponentOptionData[];
    placeholder?: string;
    type?: StringSelect;
}

Hierarchy

  • Omit<OriginStringSelectMenuComponentData, "type">
    • StringSelectMenuComponentData

Properties

customId: string
disabled?: boolean
execute: StringSelectMenuInteractionExecute
maxValues?: number
minValues?: number
options: readonly SelectMenuComponentOptionData[]
placeholder?: string
type?: StringSelect