UNPKG

gy-foo

Version:

A library that contains all models for the gy-web-project.

19 lines (18 loc) 405 B
import { Occurrence } from './occurrence.model'; interface MailAttachments { filename: string; content: string; } export interface MailParams { context: Occurrence; to: string[]; subject: string; text: string; from?: string; cc?: string[]; bcc?: string[]; 'confirm-receipt'?: boolean; 'confirm-read'?: boolean; attachments?: MailAttachments[]; } export {};