11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE_URL?: string
|
|
readonly VITE_UI_ADAPTER?: 'primevue' | 'native'
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|