| 4 | type AdType = 'large' | 'standard'; |
| 5 | |
| 6 | interface NativeBannerViewProps { |
| 7 | size: number; |
| 8 | onAdPress: Function; |
| 9 | onAdError: Function; |
| 10 | onAdLoad: Function; |
| 11 | style: StyleProp<ViewStyle>; |
| 12 | placementId: string; |
| 13 | } |
| 14 | |
| 15 | interface BannerViewProps { |
| 16 | type: AdType; |
nothing calls this directly
no outgoing calls
no test coverage detected