Skip to content

Commit

Permalink
fix(push): Add support for passing notification id into finish (#600)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdsanders authored and ihadeed committed Sep 28, 2016
1 parent 2ed84b1 commit 16f05c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/push.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 16f05c3

Please sign in to comment.