feat(background-fetch): add status method

This commit is contained in:
John-Luke 2017-04-17 15:22:44 -03:00 committed by GitHub
parent 4bd6aaba2b
commit 6168eaee47

View File

@ -100,4 +100,11 @@ export class BackgroundFetch {
})
finish(): void { }
/**
* Return the status of the background-fetch
* @returns {Promise<any>}
*/
@Cordova()
status(): Promise<any> { return; }
}