tutu/src/overrides.d.ts

19 lines
423 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-11-13 11:27:35 +00:00
/**
* Attach the overlay (in the dev mode) if it's `"true"`.
*/
readonly VITE_DEVTOOLS_OVERLAY?: string;
2024-07-22 13:57:04 +00:00
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}