Interface ISelectMenu

interface ISelectMenu {
    channelTypes?: ChannelType[];
    customId: string;
    defaultValues?: SelectDefaultValue[];
    disabled: boolean;
    maxValues?: number;
    minValues?: number;
    options: ISelectMenuOption[];
    placeholder?: string;
    selectType: SelectMenuType;
}

Implemented by

Properties

channelTypes?: ChannelType[]
customId: string
defaultValues?: SelectDefaultValue[]
disabled: boolean
maxValues?: number
minValues?: number
placeholder?: string
selectType: SelectMenuType

Generated using TypeDoc