File size: 339 Bytes
191270f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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;
}
|