t2-mapper/env.d.ts
2026-03-20 22:19:54 -07:00

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;
}