export interface EmailAccount { host: string; port: string; auth: { user: string; pass: string; }; } export default () => ({ testerAccount: { host: 'smtp.qq.com', port: '465', auth: { user: 'alarm_notify@foxmail.com', pass: 'pnjopvubfcigbfgb', }, } as EmailAccount, });