mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 21:20:57 +00:00
13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_HR_API_URL: string;
|
|
readonly VITE_AUTH_API_URL: string;
|
|
readonly VITE_CLIENT_APP: string;
|
|
readonly VITE_AUTH_BASE_PATH: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|