mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 15:52:56 +10:00
11 lines
153 B
TypeScript
11 lines
153 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
TZ: string;
|
|
NODE_ENV: 'development' | 'production';
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|