14 lines
325 B
TypeScript
14 lines
325 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL?: string
|
|
readonly VITE_AUTH_MODE?: string
|
|
readonly VITE_NEW_START_ID_URL?: string
|
|
readonly VITE_NEW_START_ID_REALM?: string
|
|
readonly VITE_NEW_START_ID_CLIENT_ID?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|