frontend / 6.5.1 /client /src /globals.d.ts
gradio-pr-bot's picture
Upload folder using huggingface_hub
24c5dd9 verified
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;
BUILD_MODE?: "dev" | "production";
}
}