From 5b98a808286af671da3d341d87af68f40eb61651 Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Tue, 29 Nov 2016 13:14:34 -0500 Subject: [PATCH] docs(backgroundmode): update docs --- src/plugins/backgroundmode.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/backgroundmode.ts b/src/plugins/backgroundmode.ts index ae697c257..a76e7fd57 100644 --- a/src/plugins/backgroundmode.ts +++ b/src/plugins/backgroundmode.ts @@ -53,14 +53,14 @@ export class BackgroundMode { /** * Checks if background mode is enabled or not. - * @returns {Promise} returns a true of false if the background mode is enabled. + * @returns {Promise} returns a promise that resolves with boolean that indicates if the background mode is enabled. */ @Cordova() static isEnabled(): Promise { return; } /** * Can be used to get the information if the background mode is active. - * @returns {Promise} returns true or false if the background mode is active. + * @returns {Promise} returns a promise that resolves with boolean that indicates if the background mode is active. */ @Cordova() static isActive(): Promise { return; }