Files
hydra/src/main/vite-env.d.ts
2024-11-05 13:07:37 -03:00

14 lines
342 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly MAIN_VITE_STEAMGRIDDB_API_KEY: string;
readonly MAIN_VITE_API_URL: string;
readonly MAIN_VITE_ANALYTICS_API_URL: string;
readonly MAIN_VITE_AUTH_URL: string;
readonly MAIN_VITE_CHECKOUT_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}