10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
|
namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
PORT: number;
|
||
|
DB_NAME: string;
|
||
|
DB_USER: string;
|
||
|
DB_PASSWORD: string;
|
||
|
DB_HOST: string;
|
||
|
DB_PORT: number;
|
||
|
}
|
||
|
}
|