Add nodemailer module declaration

This commit is contained in:
Adam Babcock
2014-12-12 11:26:27 -05:00
committed by Jason Tremper
parent 6ace0b8dcd
commit e23c3329fd
+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;
}