UNPKG

react-native-appodeal

Version:

React Native Module created to support Appodeal SDK for iOS and Android platforms

13 lines (12 loc) 392 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; interface AppodealMrecProps { placement?: string; onAdLoaded?: Function; onAdFailedToLoad?: Function; onAdClicked?: Function; onAdExpired?: Function; style?: StyleProp<ViewStyle>; } declare const AppodealMrec: (props: AppodealMrecProps) => React.JSX.Element; export default AppodealMrec;