Interface UserSelectMenuComponentData<Module>

interface UserSelectMenuComponentData<Module> {
    customId: string;
    defaultValues?: readonly APISelectMenuDefaultValue<User>[];
    disabled?: boolean;
    execute: UserSelectMenuInteractionExecute<Module>;
    maxValues?: number;
    minValues?: number;
    placeholder?: string;
    type: UserSelect;
}

Type Parameters

Hierarchy

  • Omit<OriginUserSelectMenuComponentData, "type" | "customId">
    • UserSelectMenuComponentData

Properties

customId: string
defaultValues?: readonly APISelectMenuDefaultValue<User>[]
disabled?: boolean
execute: UserSelectMenuInteractionExecute<Module>
maxValues?: number
minValues?: number
placeholder?: string