gradio-pr-bot's picture
Upload folder using huggingface_hub
ce0b5c4 verified
raw
history blame
339 Bytes
import type { LoadingStatus } from "@gradio/statustracker";
import type { SelectData } from "@gradio/utils";
export interface RadioProps {
choices: [string, string | number][];
value: string;
info: string;
rtl: boolean;
}
export interface RadioEvents {
select: SelectData;
change: any;
input: any;
clear_status: LoadingStatus;
}