chore(): remove returned Promises

Addresses: https://github.com/driftyco/ionic-native/issues/38.
This commit is contained in:
Tim Lancina
2016-03-10 14:54:25 -06:00
parent 738184b5be
commit 78fdbcd42e
5 changed files with 16 additions and 116 deletions
+2 -4
View File
@@ -45,9 +45,7 @@ export class AppRate {
* @type {{}}
*/
@CordovaProperty
static get preferences() {
return window.AppRate.preferences;
}
static get preferences() { return window.AppRate.preferences; }
/**
* Prompts the user for rating
@@ -55,6 +53,6 @@ export class AppRate {
* @param {boolean} immediately Show the rating prompt immediately.
*/
@Cordova()
static promptForRating(immediately: boolean) : void {};
static promptForRating(immediately: boolean): void {};
}