gradio/ui/JSX.d.ts
pngwn 817819d7a1
Fix the types (#1843)
* fix types

* fail CI when typechecking fails

* maybe fix

* more fix

* remove all rferences to theme

* fix login
2022-07-21 19:12:46 +01:00

9 lines
201 B
TypeScript

declare namespace svelte.JSX {
interface DOMAttributes<T extends EventTarget> {
theme?: string;
"item-type"?: string;
webkitdirectory?: boolean | string;
mozdirectory?: boolean | string;
}
}