14 lines
277 B
TypeScript
14 lines
277 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
export interface ProcessEnv {
|
|
API_URL: string;
|
|
EMAIL_ADDRESS: string;
|
|
EMAIL_PASSWORD: string;
|
|
MONGO_URI: string;
|
|
PORT: string;
|
|
ROOT_ENDPOINT: string;
|
|
WEBSITE_URL: string;
|
|
}
|
|
}
|
|
}
|
|
export {}; |