tutu/src/overrides.d.ts

19 lines
423 B
TypeScript
Raw Normal View History

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-07-22 21:57:04 +08:00
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}