From eb1d7786e2de5a11763e2360b25277540ebcf1f1 Mon Sep 17 00:00:00 2001 From: SomaticIT Date: Mon, 15 Sep 2014 18:13:02 +0200 Subject: [PATCH] Fix issue in sendgrid send method definition --- sendgrid/sendgrid.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sendgrid/sendgrid.d.ts b/sendgrid/sendgrid.d.ts index 96d52601e..6d4974a03 100644 --- a/sendgrid/sendgrid.d.ts +++ b/sendgrid/sendgrid.d.ts @@ -109,6 +109,7 @@ interface Sendgrid { options: SendgridOptionsExport; Email: typeof PrivateSendgridEmail; + send(email: SendgridEmailOptions, callback: (err: Error, json: any) => any): void; send(email: PrivateSendgridEmail, callback: (err: Error, json: any) => any): void; }