mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-05-09 23:36:17 +00:00
7 lines
189 B
TypeScript
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;
|
|
}
|
|
}
|