mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
13 lines
345 B
TypeScript
13 lines
345 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;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|