Files
2026-06-24 14:20:05 +02:00

19 lines
353 B
TypeScript

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