Chameleon
    Preparing search index...

    Interface ChannelSelectDef

    interface ChannelSelectDef {
        customId: string;
        channelTypes?: number[];
        placeholder?: string;
        minValues?: number;
        maxValues?: number;
        disabled?: boolean;
        execute: (
            ctx: ComponentContext<Partial<Channel>[]>,
        ) => void | Promise<void>;
    }
    Index

    Properties

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