fix(push): fix typing for additionalData

closes #868
This commit is contained in:
Ibby 2017-01-07 06:42:38 -05:00
parent 49325e8b93
commit 0d6997cbdd

View File

@ -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;
}
/**