mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
The same ambient process declaration was duplicated across 35 server files. Move it to a single server/env.d.ts file that tsconfig.api.json automatically includes. Addresses #197 (L-15). Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
3 lines
150 B
TypeScript
3 lines
150 B
TypeScript
/** Ambient declaration for process.env — shared by all server-side modules. */
|
|
declare const process: { env: Record<string, string | undefined> };
|