UNPKG

react-native-appodeal

Version:

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

16 lines (15 loc) 485 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; interface AppodealBannerProps { adSize: AdSize; placement?: string; usesSmartSizing?: boolean; onAdLoaded?: Function; onAdFailedToLoad?: Function; onAdClicked?: Function; onAdExpired?: Function; style?: StyleProp<ViewStyle>; } type AdSize = 'phone' | 'tablet'; declare const AppodealBanner: (props: AppodealBannerProps) => React.JSX.Element; export default AppodealBanner;