t2-mapper/env.d.ts
2026-03-16 18:16:34 -07:00

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