mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-03-19 20:31:13 +00:00
9 lines
195 B
TypeScript
9 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;
|
||
|
|
}
|