From 0d6997cbdd717471e190b8282f6096922d197692 Mon Sep 17 00:00:00 2001 From: Ibby Date: Sat, 7 Jan 2017 06:42:38 -0500 Subject: [PATCH] fix(push): fix typing for additionalData closes #868 --- src/plugins/push.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/push.ts b/src/plugins/push.ts index c3991f96..a947de12 100644 --- a/src/plugins/push.ts +++ b/src/plugins/push.ts @@ -36,7 +36,7 @@ export interface NotificationEventResponse { /** * An optional collection of data sent by the 3rd party push service that does not fit in the above properties. */ - additionalData: NotificationEventAdditionalData; + additionalData: NotificationEventAdditionalData | any; } /**