Interface StringSelectMenuComponentData<Module>

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

Type Parameters

Hierarchy

  • Omit<OriginStringSelectMenuComponentData, "type" | "customId">
    • StringSelectMenuComponentData

Properties

customId: string
disabled?: boolean
execute: StringSelectMenuInteractionExecute<Module>
maxValues?: number
minValues?: number
options: readonly SelectMenuComponentOptionData[]
placeholder?: string