File size: 458 Bytes
c1589b4
1973eaa
 
 
 
 
 
 
 
 
c1589b4
1973eaa
 
 
 
 
 
c1589b4
1973eaa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import type { SelectData, LoadingStatus, CustomButton } from "@gradio/utils";

export interface LabelProps {
	value: {
		label?: string;
		confidences?: { label: string; confidence: number }[];
	};
	color: undefined | string;
	_selectable: boolean;
	show_heading: boolean;
	buttons: (string | CustomButton)[] | null;
}

export interface LabelEvents {
	change: never;
	select: SelectData;
	clear_status: LoadingStatus;
	custom_button_click: { id: number };
}