From 16f05c3b0d7e84bf395e36567ab14d52bc42ed76 Mon Sep 17 00:00:00 2001 From: Steve Sanders Date: Wed, 28 Sep 2016 12:51:03 -0500 Subject: [PATCH] fix(push): Add support for passing notification id into finish (#600) --- src/plugins/push.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/push.ts b/src/plugins/push.ts index 92e72c8dba..c4cfff762c 100644 --- a/src/plugins/push.ts +++ b/src/plugins/push.ts @@ -134,8 +134,9 @@ export interface PushNotification { * successHandler gets called when background push processing is successfully completed. * @param successHandler * @param errorHandler + * @param id */ - finish(successHandler: () => any, errorHandler: () => any): void; + finish(successHandler: () => any, errorHandler: () => any, id?: string): void; } export interface IOSPushOptions {