Files
edr-platform/apps/edr-hr-web/src/vite-env.d.ts
2026-08-25 00:11:39 +03:00

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;
}