mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-05 13:02:54 +00:00
25 lines
592 B
TypeScript
25 lines
592 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
/**
|
|
* If set to true, invalid smtp configs will not throw an error
|
|
*/
|
|
ALLOW_NO_TRANSPORT?: 'true' | string;
|
|
SMTP_AUTH_USER?: string;
|
|
SMTP_AUTH_PASSWORD?: string;
|
|
SMTP_SENDER_MAIL?: string;
|
|
SMTP_SENDER_NAME?: string;
|
|
SMTP_HOST?: string;
|
|
SMTP_PORT?: string;
|
|
SMTP_CC?: string;
|
|
SMTP_RECIPIENTS?: string;
|
|
SMTP_SECURE?: 'true' | string;
|
|
STAPPS_LOG_LEVEL?: string;
|
|
STAPPS_EXIT_LEVEL?: string;
|
|
NODE_ENV?: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|