tutu/src/overrides.d.ts
thislight c97f61db06
Some checks failed
/ depoly (push) Failing after 1m14s
add solid-devtools
2024-11-13 19:27:35 +08:00

18 lines
423 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly BUILT_AT: string;
readonly PACKAGE_VERSION: string;
/**
* The code reversion. It's recommended to be the git commit sha.
*/
readonly VITE_CODE_VERSION?: string;
/**
* Attach the overlay (in the dev mode) if it's `"true"`.
*/
readonly VITE_DEVTOOLS_OVERLAY?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}