UNPKG

react-native-rate-app

Version:

React Native module for In App Rating on Android and iOS

33 lines 986 B
export declare enum AndroidMarket { GOOGLE = "google", AMAZON = "amazon", SAMSUNG = "samsung", HUAWEI = "huawei" } export interface OpenStoreForReviewProps { /** * The App Store ID of the app to open the store listing for on iOS. */ iOSAppId?: string; /** * The package name of the app to open the store listing for on Android. */ androidPackageName?: string; /** * The market where the app's store listing should be opened on Android. * @default AndroidMarket.GOOGLE */ androidMarket?: AndroidMarket; } export interface RequestReviewProps { /** * The market where the app's review request should be directed on Android. * @default AndroidMarket.GOOGLE */ androidMarket?: Exclude<AndroidMarket, AndroidMarket.AMAZON>; /** * The package name of the app to request a review for on Samsung Galaxy Store. */ androidPackageName?: string; } //# sourceMappingURL=types.d.ts.map