mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 16:53:57 +00:00
13 lines
292 B
TypeScript
13 lines
292 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly MAIN_VITE_STEAMGRIDDB_API_KEY: string;
|
|
readonly MAIN_VITE_API_URL: string;
|
|
readonly MAIN_VITE_AUTH_URL: string;
|
|
readonly MAIN_VITE_SENTRY_DSN: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|