16 lines
367 B
TypeScript
16 lines
367 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE_URL?: string
|
|
readonly VITE_APP_NAME?: string
|
|
readonly VITE_APP_VERSION?: string
|
|
readonly VITE_APP_URL?: string
|
|
readonly VITE_APP_PORT?: string
|
|
readonly VITE_APP_ENV?: string
|
|
readonly VITE_APP_DEBUG?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|