File size: 200 Bytes
9ada4bc
 
4fedb7c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { Config } from "./types";

declare global {
	interface Window {
		__gradio_mode__: "app" | "website";
		gradio_config: Config;
		__is_colab__: boolean;
		__gradio_space__: string | null;
	}
}