16 lines
363 B
TypeScript
16 lines
363 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
|
||
|
|
interface ImportMetaEnv {
|
||
|
|
readonly VITE_BASE_PATH: string
|
||
|
|
readonly VITE_APP_NAME: string
|
||
|
|
readonly VITE_APP_TITLE: string
|
||
|
|
readonly VITE_APP_VERSION: string
|
||
|
|
readonly VITE_API_BASE_URL: string
|
||
|
|
readonly VITE_DEBUG: string
|
||
|
|
readonly VITE_ENABLE_MOCK: string
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMeta {
|
||
|
|
readonly env: ImportMetaEnv
|
||
|
|
}
|