export interface TransportConfig { enableMailer: boolean; mailer: MailerConfig; } export interface MailerConfig { host: string; port: string | number; user: string; password: string; from: string | undefined; }