File size: 391 Bytes
9e03e6a
4aaa918
 
 
 
 
9e03e6a
4aaa918
 
 
 
 
 
 
9e03e6a
4aaa918
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import type { SelectData, CustomButton } from "@gradio/utils";
import type { LoadingStatus } from "js/statustracker";

export interface CheckboxProps {
	value: boolean;
	info: string;
	buttons: (string | CustomButton)[] | null;
}

export interface CheckboxEvents {
	change: boolean;
	input: boolean;
	select: SelectData;
	clear_status: LoadingStatus;
	custom_button_click: { id: number };
}