Interface ChannelSelectMenuComponentData

interface ChannelSelectMenuComponentData {
    channelTypes?: readonly ChannelType[];
    customId: string;
    defaultValues?: readonly APISelectMenuDefaultValue<Channel>[];
    disabled?: boolean;
    execute: ChannelSelectMenuInteractionExecute;
    maxValues?: number;
    minValues?: number;
    placeholder?: string;
    type?: ChannelSelect;
}

Hierarchy

  • Omit<OriginChannelSelectMenuComponentData, "type">
    • ChannelSelectMenuComponentData

Properties

channelTypes?: readonly ChannelType[]
customId: string
defaultValues?: readonly APISelectMenuDefaultValue<Channel>[]
disabled?: boolean
execute: ChannelSelectMenuInteractionExecute
maxValues?: number
minValues?: number
placeholder?: string
type?: ChannelSelect