14 lines
382 B
TypeScript
14 lines
382 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_BUILD_DATE: string,
|
|
readonly VITE_APP_VERSION: string,
|
|
readonly VITE_COMMIT_HASH: string,
|
|
readonly VITE_IS_DEV: string,
|
|
readonly VITE_RELEASE_SOURCE: 'local' | 'deployment' | 'auto',
|
|
}
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
declare const __APP_GIT_COMMIT__: string
|