From 8096d9e06581288ec467367f22b0d20f96eecbb7 Mon Sep 17 00:00:00 2001 From: r-ising Date: Thu, 3 Mar 2016 11:45:51 +0100 Subject: [PATCH] Update node-gcm.d.ts added missing return type --- node-gcm/node-gcm.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node-gcm/node-gcm.d.ts b/node-gcm/node-gcm.d.ts index 21980416e..82b3d1957 100644 --- a/node-gcm/node-gcm.d.ts +++ b/node-gcm/node-gcm.d.ts @@ -39,8 +39,8 @@ declare module "node-gcm" { addData(key: string, value: string): void; addData(data: { [key: string]: string }): void; - addNotification(value: INotificationOptions); - addNotification(key: string, value:INotificationOptions); + addNotification(value: INotificationOptions): void; + addNotification(key: string, value:INotificationOptions): void; }