Files
2026-06-24 15:34:09 +02:00

20 lines
383 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
DATABASE_URL: string;
REDIS_URL: string;
SESSION_SECRET: string;
API_PORT: string;
FRONTEND_ORIGIN: string;
BACKEND_ORIGIN: string;
SMTP_HOST: string;
SMTP_PORT: string;
SMTP_SECURE: string;
SMTP_USER: string;
SMTP_PASS: string;
}
}
}
export {}