UNPKG

@acadix/setup

Version:

Acadix Learning Management System backend application project setup

15 lines (14 loc) 293 B
interface mail { service: string; user: string; pass: string; } interface sendMail { name: string; address: string; to?: string; subject: string; html?: string; text?: string; } export { mail as MailInterface, sendMail as SendMailInterface };