mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-03-18 20:01:01 +00:00
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
/** Vite-style import.meta.env, shared across app and node tsconfigs. */
|
|
interface ImportMetaEnv {
|
|
readonly VITE_PUBLIC_LOG?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|