aegisai / frontend / src / vite-env.d.ts
vite-env.d.ts
Raw
/// <reference types="vite/client" />

interface ImportMetaEnv {
  readonly VITE_GEMINI_API_KEY: string;
  readonly VITE_API_URL: string;
  readonly VITE_ANALYSIS_INTERVAL: string;
}

interface ImportMeta {
  readonly env: ImportMetaEnv;
}