Chameleon
    Preparing search index...

    Interface StringSelectDef

    interface StringSelectDef {
        customId: string;
        options: SelectOption[];
        placeholder?: string;
        minValues?: number;
        maxValues?: number;
        disabled?: boolean;
        execute: (ctx: ComponentContext<string[]>) => void | Promise<void>;
    }
    Index

    Properties

    customId: string
    options: SelectOption[]
    placeholder?: string
    minValues?: number
    maxValues?: number
    disabled?: boolean
    execute: (ctx: ComponentContext<string[]>) => void | Promise<void>