vue-rp-example/env.d.ts
Nathan SOULIER 95956fccd8 First commit
2025-03-24 10:18:59 +01:00

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
}