chore(package): bump dependencies and lint rules

This commit is contained in:
Daniel
2018-03-16 22:04:01 +01:00
parent 7547a94c80
commit 21ad4734fa
178 changed files with 10565 additions and 4194 deletions
@@ -1,5 +1,5 @@
import { Injectable } from '@angular/core';
import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
/**
* @name Launch Review
@@ -35,7 +35,6 @@ import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';
})
@Injectable()
export class LaunchReview extends IonicNativePlugin {
/**
* Launches App Store on current platform in order to leave a review for given app.
* @param appId {string} - (optional) the platform-specific app ID to use to open the page in the store app.
@@ -45,7 +44,9 @@ export class LaunchReview extends IonicNativePlugin {
* @returns {Promise<void>}
*/
@Cordova({ platforms: ['Android', 'iOS'], callbackOrder: 'reverse' })
launch(appId?: string): Promise<void> { return; }
launch(appId?: string): Promise<void> {
return;
}
/**
* Invokes the native in-app rating dialog which allows a user to rate your app without needing to open the App Store.
@@ -57,7 +58,9 @@ export class LaunchReview extends IonicNativePlugin {
* @returns {Promise<string>}
*/
@Cordova({ platforms: ['iOS'] })
rating(): Promise<string> { return; }
rating(): Promise<string> {
return;
}
/**
* Indicates if the current platform/version supports in-app ratings dialog, i.e. calling LaunchReview.rating().
@@ -65,6 +68,7 @@ export class LaunchReview extends IonicNativePlugin {
* @returns {boolean}
*/
@Cordova({ platforms: ['Android', 'iOS'], sync: true })
isRatingSupported(): boolean { return; }
isRatingSupported(): boolean {
return;
}
}