tutu/src/overrides.d.ts
2024-07-22 21:57:04 +08:00

10 lines
189 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly BUILT_AT: string;
readonly PACKAGE_VERSION: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}