Type Alias PromptWithMultipleChoices

PromptWithMultipleChoices: PromptBase & {
    choices: PromptChoice[];
    maxValues?: number;
    minValues?: number;
    multiple: true;
    type: "string" | "number" | "channel" | "role" | "user";
}