mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-17 11:29:58 +08:00
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 {};
|