gradio-pr-bot's picture
Upload folder using huggingface_hub
c48381e verified
raw
history blame
287 Bytes
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;
}