| 26 | const NativeAdView = requireNativeComponent<NativeAdViewProps>('CTKNativeAd'); |
| 27 | |
| 28 | interface AdWrapperState { |
| 29 | ad?: NativeAd; |
| 30 | canRequestAds: boolean; |
| 31 | mediaViewNodeHandle: number; |
| 32 | adIconViewNodeHandle: number; |
| 33 | clickableChildren: Set<number>; |
| 34 | } |
| 35 | |
| 36 | interface AdWrapperProps { |
| 37 | adsManager: AdsManager; |
nothing calls this directly
no outgoing calls
no test coverage detected