| 1 | export interface NativeAd { |
| 2 | advertiserName: string; |
| 3 | bodyText: string; |
| 4 | callToActionText: string; |
| 5 | headline: string; |
| 6 | linkDescription: string; |
| 7 | promotedTranslation: string; |
| 8 | sponsoredTranslation: string; |
| 9 | socialContext: string; |
| 10 | translation: string; |
| 11 | } |
| 12 | |
| 13 | export interface HasNativeAd { |
| 14 | nativeAd: NativeAd; |
nothing calls this directly
no outgoing calls
no test coverage detected