t2-mapper/env.d.ts
2026-03-30 20:01:31 -07:00

7 lines
189 B
TypeScript

/** Environment variables available in both Vite and Node.js. */
declare namespace NodeJS {
interface ProcessEnv {
readonly LOG_LEVEL?: string;
readonly RELAY_URL?: string;
}
}