11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE_URL: string
|
|
readonly VITE_APP_TITLE: string
|
|
readonly VITE_APP_VERSION: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|