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 }; }