File size: 287 Bytes
c48381e
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type { LoadingStatus } from "@gradio/statustracker";

export interface SimpleDropdownProps {
	value: string | number;
	choices: [string, string | number][];
}

export interface SimpleDropdownEvents {
	change: string;
	input: never;
	select: never;
	clear_status: LoadingStatus;
}