mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
817819d7a1
* fix types * fail CI when typechecking fails * maybe fix * more fix * remove all rferences to theme * fix login
15 lines
297 B
TypeScript
15 lines
297 B
TypeScript
declare global {
|
|
interface Window {
|
|
__gradio_mode__: "app" | "website";
|
|
launchGradio: Function;
|
|
launchGradioFromSpaces: Function;
|
|
gradio_config: Config;
|
|
scoped_css_attach: (link: HTMLLinkElement) => void;
|
|
__gradio_loader__: Array<{
|
|
$set: (args: any) => any;
|
|
}>;
|
|
}
|
|
}
|
|
|
|
export {};
|