Merge pull request #2380 from zaneli/fix_nodemailer

Append 'useDKIM’, 'close' function's return-type annotation
This commit is contained in:
Masahiro Wakame
2014-06-20 14:39:48 +09:00
3 changed files with 2 additions and 4 deletions

View File

@@ -1 +0,0 @@
""

View File

@@ -17,8 +17,8 @@ declare class Transport {
options: Object;
transportType: string;
sendMailWithTransport(emailMessage: MailComposer, callback?: (err: Error) => any): any;
useDKIM(dkim: DKIMOptions);
close(callback?: (err: Error) => any);
useDKIM(dkim: DKIMOptions): void;
close(callback?: (err: Error) => any): any;
sendMail(message: MailComposer, callback?: (err: Error) => any): any;
send_mail(message:MailComposer, callback?: (err: Error) => any): any;
}

View File

@@ -1 +0,0 @@
""