mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
9b2119f297
* Fix + test * Remove print statements + fix import for 3.7 * CHANGELOG * Remove more print statements * Add 60 second timeout for uploading data * Fix test * Add unsecure token * Undo diff * Add CHANGELOG * Fix on main * remove __gradio_loader__ --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
declare global {
|
|
interface Window {
|
|
__gradio_mode__: "app" | "website";
|
|
launchGradio: Function;
|
|
launchGradioFromSpaces: Function;
|
|
gradio_config: Config;
|
|
scoped_css_attach: (link: HTMLLinkElement) => void;
|
|
__is_colab__: boolean;
|
|
}
|
|
}
|
|
|
|
export {};
|