2024-07-22 21:57:04 +08:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
interface ImportMetaEnv {
|
|
|
|
readonly BUILT_AT: string;
|
|
|
|
readonly PACKAGE_VERSION: string;
|
2024-11-10 23:08:54 +08:00
|
|
|
/**
|
|
|
|
* The code reversion. It's recommended to be the git commit sha.
|
|
|
|
*/
|
|
|
|
readonly VITE_CODE_VERSION?: string;
|
2024-11-13 19:27:35 +08:00
|
|
|
/**
|
|
|
|
* Attach the overlay (in the dev mode) if it's `"true"`.
|
|
|
|
*/
|
|
|
|
readonly VITE_DEVTOOLS_OVERLAY?: string;
|
2024-11-23 00:01:45 +08:00
|
|
|
/**
|
|
|
|
* Always use compatible version of Masonry.
|
|
|
|
*/
|
2024-11-24 16:00:56 +08:00
|
|
|
readonly VITE_PLATFORM_MASONRY_ALWAYS_COMPAT?: string
|
2024-07-22 21:57:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
readonly env: ImportMetaEnv;
|
|
|
|
}
|