23 lines
658 B
TypeScript
23 lines
658 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly APPLICATION_BASEURL: string
|
|
readonly APPLICATION_NAME: string
|
|
readonly APPLICATION_LOGOURL: string
|
|
readonly OAUTH_ISSUER: string
|
|
readonly OAUTH_REDIRECTURI: string
|
|
readonly OAUTH_CLIENTID: string
|
|
readonly OAUTH_RESPONSETYPE: string
|
|
readonly OAUTH_SCOPE: string
|
|
readonly OAUTH_REQUIREHTTPS: boolean
|
|
readonly VITE_API_URL: string
|
|
readonly API_ROOTNAMESPACE: string
|
|
readonly VITE_CDN_URL: string
|
|
readonly VITE_REACT_APP_VERSION: string
|
|
readonly VITE_AI_URL: string
|
|
readonly VITE_COMPANY_URL: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|