mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 16:53:57 +00:00
17 lines
467 B
TypeScript
17 lines
467 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
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;
|
|
readonly MAIN_VITE_EXTERNAL_RESOURCES_URL: string;
|
|
readonly MAIN_VITE_WS_URL: string;
|
|
readonly MAIN_VITE_RENDERER_URL: string;
|
|
readonly ELECTRON_RENDERER_URL: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|