mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
d6f54b6607
* type audio component * add types * add types for dropdown * add types for File * type image component * type number component * type radio * type slider * type textbox * type timeseries * type video * remove logs * fix formatting * some output component types * type JSON output * type label output * type timeseries and video output * type more output components * more types * type interface and app * update config to ts * update nam,es
7 lines
128 B
TypeScript
7 lines
128 B
TypeScript
declare namespace svelte.JSX {
|
|
interface DOMAttributes<T extends EventTarget> {
|
|
theme?: string;
|
|
"item-type"?: string;
|
|
}
|
|
}
|