mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
25 lines
467 B
TypeScript
25 lines
467 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface Window {
|
|
__IAM_CONFIG__?: {
|
|
apiUrl: string;
|
|
postLoginPath?: string;
|
|
};
|
|
__USER_MANAGEMENT_BRANDING__?: {
|
|
organizationName: string;
|
|
appName: string;
|
|
moduleBasePath: string;
|
|
backToAppPath?: string;
|
|
backToAppLabel?: string;
|
|
};
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL: string;
|
|
readonly VITE_BASE_API_URL: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|