UNPKG

react-native-google-mobile-ads

Version:

React Native Google Mobile Ads is an easy way to monetize mobile apps with targeted, in-app advertising.

15 lines (13 loc) 250 B
/** * A `RewardedAdReward` returned from rewarded ads. */ export interface RewardedAdReward { /** * The reward name, e.g. 'coins', 'diamonds'. */ type: string; /** * The number value of the reward, e.g. 10 */ amount: number; }