Spaces:
Running
Running
File size: 321 Bytes
d4b85c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { ApiData, ApiInfo, Config } from "./types";
declare global {
interface Window {
__gradio_mode__: "app" | "website";
gradio_config: Config;
gradio_api_info: ApiInfo<ApiData> | { api: ApiInfo<ApiData> };
__is_colab__: boolean;
__gradio_space__: string | null;
supports_zerogpu_headers?: boolean;
}
}
|