tutu/src/overrides.d.ts

15 lines
308 B
TypeScript
Raw Normal View History

2024-07-22 13:57:04 +00:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly BUILT_AT: string;
readonly PACKAGE_VERSION: string;
2024-11-10 15:08:54 +00:00
/**
* The code reversion. It's recommended to be the git commit sha.
*/
readonly VITE_CODE_VERSION?: string;
2024-07-22 13:57:04 +00:00
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}