14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
|
|
interface ImportMetaEnv {
|
|
readonly RP_GRPC_CORE_HOST: string
|
|
readonly KEYCLOAK_URL: string
|
|
readonly KEYCLOAK_REALM: string
|
|
readonly KEYCLOAL_CLIENT_ID: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|