Interface RoleSelectMenuComponentData

interface RoleSelectMenuComponentData {
    customId: string;
    defaultValues?: readonly APISelectMenuDefaultValue<Role>[];
    disabled?: boolean;
    execute: RoleSelectMenuInteractionExecute;
    maxValues?: number;
    minValues?: number;
    placeholder?: string;
    type?: RoleSelect;
}

Hierarchy

  • Omit<OriginRoleSelectMenuComponentData, "type">
    • RoleSelectMenuComponentData

Properties

customId: string
defaultValues?: readonly APISelectMenuDefaultValue<Role>[]
disabled?: boolean
execute: RoleSelectMenuInteractionExecute
maxValues?: number
minValues?: number
placeholder?: string
type?: RoleSelect