gradio-pr-bot's picture
Upload folder using huggingface_hub
19187ba verified
import type { SelectData } from "@gradio/utils";
export interface CheckboxGroupProps {
value: (string | number)[];
choices: [string, string | number][];
info: string;
show_select_all: boolean;
}
export interface CheckboxGroupEvents {
change: (string | number)[];
input: (string | number)[];
select: SelectData;
clear_status: void;
}