14 lines
335 B
TypeScript
14 lines
335 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_DIAGRAM_API_URL?: string;
|
|
readonly VITE_TOIR_LIGHT_ORIGIN?: string;
|
|
readonly VITE_KEYCLOAK_URL?: string;
|
|
readonly VITE_KEYCLOAK_REALM?: string;
|
|
readonly VITE_KEYCLOAK_CLIENT_ID?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|