fix(push): fix finish method

This commit is contained in:
Ibby Hadeed 2017-12-11 19:34:44 -05:00
parent 9d70ec025d
commit 995fd56894

View File

@ -414,9 +414,11 @@ export class PushObject {
* iOS only
* Tells the OS that you are done processing a background push notification.
* successHandler gets called when background push processing is successfully completed.
* @param id
* @param [id]
*/
@CordovaInstance()
@CordovaInstance({
callbackOrder: 'reverse'
})
finish(id?: string): Promise<any> { return; }
/**