From 7736ca774754d29a9987deb36214d421cbc4f3fc Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Wed, 9 Jun 2021 10:09:26 +0200 Subject: [PATCH] chore: Update app-rate types (#3680) --- src/@ionic-native/plugins/app-rate/index.ts | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/@ionic-native/plugins/app-rate/index.ts b/src/@ionic-native/plugins/app-rate/index.ts index 0bba073cf..2838c2d06 100644 --- a/src/@ionic-native/plugins/app-rate/index.ts +++ b/src/@ionic-native/plugins/app-rate/index.ts @@ -89,16 +89,6 @@ export interface AppRatePreferences { */ showPromptForInAppReview?: boolean; - /** - * leave app or no when application page opened in app store (now supported only for iOS). Defaults to `false` - */ - inAppReview?: boolean; - - /** - * use custom view for rate dialog. Defaults to `false` - */ - useCustomRateDialog?: boolean; - /** * Custom locale object */ @@ -158,7 +148,7 @@ export interface AppRateCustomLocale { export interface AppRateLocales { addLocale(localeObject: AppRateCustomLocale): AppRateCustomLocale; - getLocale(language: string, applicationTitle?: string, customLocale?: AppRateCustomLocale); + getLocale(language: string, applicationTitle?: string, customLocale?: AppRateCustomLocale): AppRateCustomLocale; getLocalesNames(): { [prop: string]: AppRateCustomLocale }; }