mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
Merge pull request #2380 from zaneli/fix_nodemailer
Append 'useDKIM’, 'close' function's return-type annotation
This commit is contained in:
@@ -1 +0,0 @@
|
||||
""
|
||||
4
nodemailer/nodemailer.d.ts
vendored
4
nodemailer/nodemailer.d.ts
vendored
@@ -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;
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
""
|
||||
Reference in New Issue
Block a user