-added more properties on attachment object

This commit is contained in:
Ostad
2019-04-01 09:34:10 -04:00
parent 0341d2d082
commit a8f2edfe60

View File

@@ -46,9 +46,12 @@ declare namespace sendMailFactory {
content?: string;
html?: string;
attachments?: Array<{
type: string;
type?: string;
filename: string;
content: any;
content?: any;
path?: string;
contentType?: string;
encoding?: string;
}>;
}
}