File size: 295 Bytes
b0d2449 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import type { SelectData } from "@gradio/utils";
import type { LoadingStatus } from "js/statustracker";
export interface CheckboxProps {
value: boolean;
info: string;
}
export interface CheckboxEvents {
change: boolean;
input: boolean;
select: SelectData;
clear_status: LoadingStatus;
}
|