fix(push): Add support for passing notification id into finish (#600)

This commit is contained in:
Steve Sanders 2016-09-28 12:51:03 -05:00 committed by Ibrahim Hadeed
parent 2ed84b1b71
commit 16f05c3b0d

View File

@ -134,8 +134,9 @@ export interface PushNotification {
* successHandler gets called when background push processing is successfully completed. * successHandler gets called when background push processing is successfully completed.
* @param successHandler * @param successHandler
* @param errorHandler * @param errorHandler
* @param id
*/ */
finish(successHandler: () => any, errorHandler: () => any): void; finish(successHandler: () => any, errorHandler: () => any, id?: string): void;
} }
export interface IOSPushOptions { export interface IOSPushOptions {