cordova-plugin-apprate
Version:
<a href="https://badge.fury.io/js/cordova-plugin-apprate" target="_blank"><img height="21" style='border:0px;height:21px;' border='0' src="https://badge.fury.io/js/cordova-plugin-apprate.svg" alt="NPM Version"></a> <a href='https://www.npmjs.org/package/c
28 lines (17 loc) • 540 B
TypeScript
/// <reference path="./interfaces/index.d.ts" />
declare module 'cordova-plugin-apprate' {
export default class AppRate {
/**
* Available Locales
*/
static locales: Locales;
/**
* Initialize the AppRate Plugin - automatically called on DeviceReady()
**/
static init(): void;
static setPreferences(preferences: AppRatePreferences): void;
static getPreferences(): AppRatePreferences;
static promptForRating(immediately?: boolean): void;
static navigateToAppStore(): void;
}
}