9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'development' | 'production';
|
|
GAME_DB_SERVER: string;
|
|
GAME_DB_DATABASE: string;
|
|
GAME_DB_USER: string;
|
|
GAME_DB_PASSWORD: string;
|
|
}
|
|
} |