UNPKG

@lucario/in-app-review

Version:

This is a ionic plugin for Google Play In App Review supporting cordova

21 lines (20 loc) 764 B
import { IonicNativePlugin } from '@ionic-native/core'; /** * @name Google Play In App Review Android Plugin * @description * This plugin helps to integrate Google Play In App Review with Cordova Applications * */ export declare class InAppReviewAndroidOriginal extends IonicNativePlugin { /** * This will initiate the Google Play In App Review * * @return {Promise<InAppReviewResponse>} Returns a promise that resolves task and flow gets completed, rejects on failure of task completion/ */ initGooglePlayReview(): Promise<InAppReviewResponse>; } export interface InAppReviewResponse { taskComplete: boolean; flowComplete: boolean; } export declare const InAppReviewAndroid: InAppReviewAndroidOriginal;