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