fix(background-mode): isEnabled and isActive return booleans

fixes #908
This commit is contained in:
Ibby 2016-12-27 07:37:03 -05:00
parent 1841220359
commit ba77fd70c3

View File

@ -76,17 +76,21 @@ export class BackgroundMode {
/** /**
* Checks if background mode is enabled or not. * Checks if background mode is enabled or not.
* @returns {Promise<boolean>} returns a promise that resolves with boolean that indicates if the background mode is enabled. * @returns {boolean} returns a boolean that indicates if the background mode is enabled.
*/ */
@Cordova() @Cordova({
static isEnabled(): Promise<boolean> { return; } sync: true
})
static isEnabled(): boolean { return; }
/** /**
* Can be used to get the information if the background mode is active. * Can be used to get the information if the background mode is active.
* @returns {Promise<boolean>} returns a promise that resolves with boolean that indicates if the background mode is active. * @returns {boolean} returns a boolean that indicates if the background mode is active.
*/ */
@Cordova() @Cordova({
static isActive(): Promise<boolean> { return; } sync: true
})
static isActive(): boolean { return; }
/** /**
* Override the default title, ticker and text. * Override the default title, ticker and text.