rallly/declarations/environment.d.ts
2022-05-09 08:21:53 +01:00

21 lines
495 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
DATABASE_URL: string;
NODE_ENV: "development" | "production";
SECRET_PASSWORD: string;
MAINTENANCE_MODE?: "true";
PLAUSIBLE_DOMAIN?: string;
NEXT_PUBLIC_CRISP_WEBSITE_ID?: string;
LEGACY_MONGODB_URI?: string;
SUPPORT_EMAIL: string;
SMTP_HOST: string;
SMTP_USER: string;
SMTP_PWD: string;
SMTP_SECURE: string;
SMTP_PORT: string;
}
}
}
export {};