Update node-gcm.d.ts

added missing return type
This commit is contained in:
r-ising
2016-03-03 11:45:51 +01:00
parent 0dc2ebd236
commit 8096d9e065
+2 -2
View File
@@ -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;
}