Add nodemailer module declaration

This commit is contained in:
Adam Babcock
2014-12-11 13:56:47 -06:00
parent 07ae96e580
commit 813eb68c62
+5
View File
@@ -104,3 +104,8 @@ interface Nodemailer {
createTransport(type: string, path: string): Transport;
createXOAuthGenerator(options: XOAuthGeneratorOptions): XOAuthGenerator;
}
declare module "nodemailer" {
var nodemailer: Nodemailer;
export = nodemailer;
}