react-native-daro 1.0.12 → 1.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (222) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +30 -30
  3. package/android/build.gradle +42 -59
  4. package/android/src/admob/java/com/daro/reactnative/DaroSdkBridge.kt +23 -0
  5. package/android/src/main/AndroidManifest.xml +1 -2
  6. package/android/src/main/java/com/{darom → daro/reactnative}/DaroMAdBannerViewManager.kt +4 -4
  7. package/android/src/main/java/com/{darom → daro/reactnative}/DaroMAdNativeViewManager.kt +4 -4
  8. package/android/src/main/java/com/{darom → daro/reactnative}/DaroMModule.kt +44 -45
  9. package/android/src/main/java/com/{darom → daro/reactnative}/DaroMPackage.kt +1 -1
  10. package/android/src/main/java/com/{darom → daro/reactnative}/constants/InternalDaroMBannerSize.kt +1 -1
  11. package/android/src/main/java/com/{darom → daro/reactnative}/event/DaroMEvent.kt +1 -1
  12. package/android/src/main/java/com/{darom → daro/reactnative}/impl/DaroMBannerViewModuleImpl.kt +2 -2
  13. package/android/src/main/java/com/{darom → daro/reactnative}/impl/DaroMInterstitialModuleImpl.kt +26 -26
  14. package/android/src/main/java/com/{darom → daro/reactnative}/impl/DaroMLightPopupModuleImpl.kt +30 -29
  15. package/android/src/main/java/com/{darom → daro/reactnative}/impl/DaroMRewardedAdModuleImpl.kt +33 -27
  16. package/android/src/main/java/com/{darom → daro/reactnative}/util/AdInfoUtil.kt +25 -1
  17. package/android/src/main/java/com/{darom → daro/reactnative}/util/EventEmitterUtil.kt +2 -2
  18. package/android/src/main/java/com/daro/reactnative/view/DaroMAdBannerViewContainer.kt +417 -0
  19. package/android/src/main/java/com/{darom → daro/reactnative}/view/DaroMAdNativeViewContainer.kt +4 -4
  20. package/app.plugin.js +1 -0
  21. package/ios/DaroMAdBannerViewManager.swift +5 -1
  22. package/ios/DaroMModule+AppOpen.swift +34 -31
  23. package/ios/DaroMModule+Interstitial.swift +29 -26
  24. package/ios/DaroMModule+LightPopup.swift +40 -33
  25. package/ios/DaroMModule+Rewarded.swift +35 -27
  26. package/ios/DaroMModule.mm +13 -13
  27. package/ios/DaroMModule.swift +20 -13
  28. package/ios/DaroMNativeAdViewManager.swift +1 -1
  29. package/ios/mediation/admob/DaroMediationDebugger.swift +11 -0
  30. package/ios/mediation/admob/DaroMediationTypes.swift +22 -0
  31. package/lib/commonjs/AdBannerView.js +6 -1
  32. package/lib/commonjs/AdBannerView.js.map +1 -1
  33. package/lib/commonjs/AppOpenAd.js +155 -70
  34. package/lib/commonjs/AppOpenAd.js.map +1 -1
  35. package/lib/commonjs/ErrorCode.js.map +1 -1
  36. package/lib/commonjs/EventEmitter.js +39 -11
  37. package/lib/commonjs/EventEmitter.js.map +1 -1
  38. package/lib/commonjs/InterstitialAd.js +157 -70
  39. package/lib/commonjs/InterstitialAd.js.map +1 -1
  40. package/lib/commonjs/LightPopupAd.js +181 -99
  41. package/lib/commonjs/LightPopupAd.js.map +1 -1
  42. package/lib/commonjs/RewardedAd.js +164 -80
  43. package/lib/commonjs/RewardedAd.js.map +1 -1
  44. package/lib/commonjs/index.js +1 -2
  45. package/lib/commonjs/index.js.map +1 -1
  46. package/lib/commonjs/nativeAd/NativeAdView.js +5 -1
  47. package/lib/commonjs/nativeAd/NativeAdView.js.map +1 -1
  48. package/lib/commonjs/nativeAd/NativeAdViewComponents.js.map +1 -1
  49. package/lib/commonjs/nativeAd/NativeAdViewProvider.js.map +1 -1
  50. package/lib/commonjs/package.json +1 -0
  51. package/lib/commonjs/types/AdEvent.js +17 -0
  52. package/lib/commonjs/types/AdEvent.js.map +1 -1
  53. package/lib/module/AdBannerView.js +6 -1
  54. package/lib/module/AdBannerView.js.map +1 -1
  55. package/lib/module/AppOpenAd.js +155 -71
  56. package/lib/module/AppOpenAd.js.map +1 -1
  57. package/lib/module/ErrorCode.js.map +1 -1
  58. package/lib/module/EventEmitter.js +37 -10
  59. package/lib/module/EventEmitter.js.map +1 -1
  60. package/lib/module/InterstitialAd.js +158 -72
  61. package/lib/module/InterstitialAd.js.map +1 -1
  62. package/lib/module/LightPopupAd.js +182 -100
  63. package/lib/module/LightPopupAd.js.map +1 -1
  64. package/lib/module/RewardedAd.js +165 -82
  65. package/lib/module/RewardedAd.js.map +1 -1
  66. package/lib/module/index.js +1 -2
  67. package/lib/module/index.js.map +1 -1
  68. package/lib/module/nativeAd/NativeAdView.js +5 -1
  69. package/lib/module/nativeAd/NativeAdView.js.map +1 -1
  70. package/lib/module/nativeAd/NativeAdViewComponents.js.map +1 -1
  71. package/lib/module/nativeAd/NativeAdViewProvider.js.map +1 -1
  72. package/lib/module/package.json +1 -0
  73. package/lib/module/types/AdEvent.js +18 -1
  74. package/lib/module/types/AdEvent.js.map +1 -1
  75. package/lib/typescript/commonjs/plugin/src/index.d.ts +19 -0
  76. package/lib/typescript/commonjs/plugin/src/index.d.ts.map +1 -0
  77. package/lib/typescript/commonjs/plugin/src/skAdNetworkIds.d.ts +6 -0
  78. package/lib/typescript/commonjs/plugin/src/skAdNetworkIds.d.ts.map +1 -0
  79. package/lib/typescript/commonjs/plugin/src/withAndroid.d.ts +8 -0
  80. package/lib/typescript/commonjs/plugin/src/withAndroid.d.ts.map +1 -0
  81. package/lib/typescript/commonjs/plugin/src/withIos.d.ts +8 -0
  82. package/lib/typescript/commonjs/plugin/src/withIos.d.ts.map +1 -0
  83. package/lib/typescript/commonjs/src/AdBannerView.d.ts +124 -2
  84. package/lib/typescript/commonjs/src/AdBannerView.d.ts.map +1 -1
  85. package/lib/typescript/commonjs/src/AppOpenAd.d.ts +53 -2
  86. package/lib/typescript/commonjs/src/AppOpenAd.d.ts.map +1 -1
  87. package/lib/typescript/commonjs/src/ErrorCode.d.ts.map +1 -1
  88. package/lib/typescript/commonjs/src/EventEmitter.d.ts +9 -1
  89. package/lib/typescript/commonjs/src/EventEmitter.d.ts.map +1 -1
  90. package/lib/typescript/commonjs/src/InterstitialAd.d.ts +53 -2
  91. package/lib/typescript/commonjs/src/InterstitialAd.d.ts.map +1 -1
  92. package/lib/typescript/commonjs/src/LightPopupAd.d.ts +57 -2
  93. package/lib/typescript/commonjs/src/LightPopupAd.d.ts.map +1 -1
  94. package/lib/typescript/commonjs/src/RewardedAd.d.ts +57 -2
  95. package/lib/typescript/commonjs/src/RewardedAd.d.ts.map +1 -1
  96. package/lib/typescript/commonjs/src/index.d.ts +1 -1
  97. package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
  98. package/lib/typescript/commonjs/src/nativeAd/NativeAdView.d.ts +124 -2
  99. package/lib/typescript/commonjs/src/nativeAd/NativeAdView.d.ts.map +1 -1
  100. package/lib/typescript/commonjs/src/nativeAd/NativeAdViewComponents.d.ts.map +1 -1
  101. package/lib/typescript/commonjs/src/nativeAd/NativeAdViewProvider.d.ts.map +1 -1
  102. package/lib/typescript/commonjs/src/types/AdBannerViewProps.d.ts +2 -2
  103. package/lib/typescript/commonjs/src/types/AdBannerViewProps.d.ts.map +1 -1
  104. package/lib/typescript/commonjs/src/types/AdEvent.d.ts +24 -0
  105. package/lib/typescript/commonjs/src/types/AdEvent.d.ts.map +1 -1
  106. package/lib/typescript/commonjs/src/types/AdInfo.d.ts.map +1 -1
  107. package/lib/typescript/commonjs/src/types/AdProps.d.ts +2 -2
  108. package/lib/typescript/commonjs/src/types/AdProps.d.ts.map +1 -1
  109. package/lib/typescript/commonjs/src/types/DaroMMobileAds.d.ts.map +1 -1
  110. package/lib/typescript/commonjs/src/types/LightPopupAd.d.ts +1 -5
  111. package/lib/typescript/commonjs/src/types/LightPopupAd.d.ts.map +1 -1
  112. package/lib/typescript/commonjs/src/types/NativeAdViewProps.d.ts.map +1 -1
  113. package/lib/typescript/module/plugin/src/index.d.ts +19 -0
  114. package/lib/typescript/module/plugin/src/index.d.ts.map +1 -0
  115. package/lib/typescript/module/plugin/src/skAdNetworkIds.d.ts +6 -0
  116. package/lib/typescript/module/plugin/src/skAdNetworkIds.d.ts.map +1 -0
  117. package/lib/typescript/module/plugin/src/withAndroid.d.ts +8 -0
  118. package/lib/typescript/module/plugin/src/withAndroid.d.ts.map +1 -0
  119. package/lib/typescript/module/plugin/src/withIos.d.ts +8 -0
  120. package/lib/typescript/module/plugin/src/withIos.d.ts.map +1 -0
  121. package/lib/typescript/module/src/AdBannerView.d.ts +124 -2
  122. package/lib/typescript/module/src/AdBannerView.d.ts.map +1 -1
  123. package/lib/typescript/module/src/AppOpenAd.d.ts +53 -2
  124. package/lib/typescript/module/src/AppOpenAd.d.ts.map +1 -1
  125. package/lib/typescript/module/src/ErrorCode.d.ts.map +1 -1
  126. package/lib/typescript/module/src/EventEmitter.d.ts +9 -1
  127. package/lib/typescript/module/src/EventEmitter.d.ts.map +1 -1
  128. package/lib/typescript/module/src/InterstitialAd.d.ts +53 -2
  129. package/lib/typescript/module/src/InterstitialAd.d.ts.map +1 -1
  130. package/lib/typescript/module/src/LightPopupAd.d.ts +57 -2
  131. package/lib/typescript/module/src/LightPopupAd.d.ts.map +1 -1
  132. package/lib/typescript/module/src/RewardedAd.d.ts +57 -2
  133. package/lib/typescript/module/src/RewardedAd.d.ts.map +1 -1
  134. package/lib/typescript/module/src/index.d.ts +1 -1
  135. package/lib/typescript/module/src/index.d.ts.map +1 -1
  136. package/lib/typescript/module/src/nativeAd/NativeAdView.d.ts +124 -2
  137. package/lib/typescript/module/src/nativeAd/NativeAdView.d.ts.map +1 -1
  138. package/lib/typescript/module/src/nativeAd/NativeAdViewComponents.d.ts.map +1 -1
  139. package/lib/typescript/module/src/nativeAd/NativeAdViewProvider.d.ts.map +1 -1
  140. package/lib/typescript/module/src/types/AdBannerViewProps.d.ts +2 -2
  141. package/lib/typescript/module/src/types/AdBannerViewProps.d.ts.map +1 -1
  142. package/lib/typescript/module/src/types/AdEvent.d.ts +24 -0
  143. package/lib/typescript/module/src/types/AdEvent.d.ts.map +1 -1
  144. package/lib/typescript/module/src/types/AdInfo.d.ts.map +1 -1
  145. package/lib/typescript/module/src/types/AdProps.d.ts +2 -2
  146. package/lib/typescript/module/src/types/AdProps.d.ts.map +1 -1
  147. package/lib/typescript/module/src/types/DaroMMobileAds.d.ts.map +1 -1
  148. package/lib/typescript/module/src/types/LightPopupAd.d.ts +1 -5
  149. package/lib/typescript/module/src/types/LightPopupAd.d.ts.map +1 -1
  150. package/lib/typescript/module/src/types/NativeAdViewProps.d.ts.map +1 -1
  151. package/package.json +88 -101
  152. package/plugin/build/index.d.ts +18 -0
  153. package/plugin/build/index.js +71 -0
  154. package/plugin/build/skAdNetworkIds.d.ts +5 -0
  155. package/plugin/build/skAdNetworkIds.js +205 -0
  156. package/plugin/build/withAndroid.d.ts +7 -0
  157. package/plugin/build/withAndroid.js +140 -0
  158. package/plugin/build/withIos.d.ts +7 -0
  159. package/plugin/build/withIos.js +83 -0
  160. package/react-native-daro.podspec +25 -0
  161. package/src/AdBannerView.tsx +54 -17
  162. package/src/AppOpenAd.ts +216 -104
  163. package/src/ErrorCode.ts +1 -2
  164. package/src/EventEmitter.ts +63 -14
  165. package/src/InterstitialAd.ts +216 -104
  166. package/src/LightPopupAd.ts +240 -114
  167. package/src/RewardedAd.ts +233 -122
  168. package/src/index.tsx +20 -12
  169. package/src/nativeAd/NativeAdView.tsx +65 -14
  170. package/src/nativeAd/NativeAdViewComponents.tsx +54 -27
  171. package/src/nativeAd/NativeAdViewProvider.tsx +17 -7
  172. package/src/types/AdBannerViewProps.ts +11 -11
  173. package/src/types/AdEvent.ts +39 -2
  174. package/src/types/AdInfo.ts +17 -17
  175. package/src/types/AdProps.ts +8 -9
  176. package/src/types/DaroMMobileAds.ts +3 -6
  177. package/src/types/LightPopupAd.ts +2 -7
  178. package/src/types/NativeAdViewProps.ts +5 -5
  179. package/src/types/index.ts +1 -1
  180. package/android/gradle.properties +0 -5
  181. package/android/src/main/AndroidManifestNew.xml +0 -7
  182. package/android/src/main/java/com/darom/view/DaroMAdBannerViewContainer.kt +0 -163
  183. package/android/src/main/res/layout/layout_activity_transparent.xml +0 -7
  184. package/android/src/main/res/values/styles.xml +0 -11
  185. package/ios/DaroM-Bridging-Header.h +0 -6
  186. package/lib/commonjs/types/AppOpenAd.js +0 -6
  187. package/lib/commonjs/types/AppOpenAd.js.map +0 -1
  188. package/lib/commonjs/types/FullScreenAd.js +0 -6
  189. package/lib/commonjs/types/FullScreenAd.js.map +0 -1
  190. package/lib/commonjs/types/InterstitialAd.js +0 -6
  191. package/lib/commonjs/types/InterstitialAd.js.map +0 -1
  192. package/lib/commonjs/types/RewardedAd.js +0 -6
  193. package/lib/commonjs/types/RewardedAd.js.map +0 -1
  194. package/lib/module/types/AppOpenAd.js +0 -4
  195. package/lib/module/types/AppOpenAd.js.map +0 -1
  196. package/lib/module/types/FullScreenAd.js +0 -4
  197. package/lib/module/types/FullScreenAd.js.map +0 -1
  198. package/lib/module/types/InterstitialAd.js +0 -4
  199. package/lib/module/types/InterstitialAd.js.map +0 -1
  200. package/lib/module/types/RewardedAd.js +0 -4
  201. package/lib/module/types/RewardedAd.js.map +0 -1
  202. package/lib/typescript/commonjs/src/types/AppOpenAd.d.ts +0 -3
  203. package/lib/typescript/commonjs/src/types/AppOpenAd.d.ts.map +0 -1
  204. package/lib/typescript/commonjs/src/types/FullScreenAd.d.ts +0 -21
  205. package/lib/typescript/commonjs/src/types/FullScreenAd.d.ts.map +0 -1
  206. package/lib/typescript/commonjs/src/types/InterstitialAd.d.ts +0 -3
  207. package/lib/typescript/commonjs/src/types/InterstitialAd.d.ts.map +0 -1
  208. package/lib/typescript/commonjs/src/types/RewardedAd.d.ts +0 -9
  209. package/lib/typescript/commonjs/src/types/RewardedAd.d.ts.map +0 -1
  210. package/lib/typescript/module/src/types/AppOpenAd.d.ts +0 -3
  211. package/lib/typescript/module/src/types/AppOpenAd.d.ts.map +0 -1
  212. package/lib/typescript/module/src/types/FullScreenAd.d.ts +0 -21
  213. package/lib/typescript/module/src/types/FullScreenAd.d.ts.map +0 -1
  214. package/lib/typescript/module/src/types/InterstitialAd.d.ts +0 -3
  215. package/lib/typescript/module/src/types/InterstitialAd.d.ts.map +0 -1
  216. package/lib/typescript/module/src/types/RewardedAd.d.ts +0 -9
  217. package/lib/typescript/module/src/types/RewardedAd.d.ts.map +0 -1
  218. package/react-native-daro-m.podspec +0 -44
  219. package/src/types/AppOpenAd.ts +0 -3
  220. package/src/types/FullScreenAd.ts +0 -28
  221. package/src/types/InterstitialAd.ts +0 -3
  222. package/src/types/RewardedAd.ts +0 -15
@@ -1,6 +1,128 @@
1
- import { type ViewProps } from 'react-native';
2
1
  import type { NativeAdViewHandler } from '../types/NativeAdViewProps';
3
2
  export declare const NativeAdView: import("react").ForwardRefExoticComponent<import("..").AdProps & {
4
3
  loadOnMount?: boolean;
5
- } & ViewProps & import("react").RefAttributes<NativeAdViewHandler>>;
4
+ } & Readonly<Omit<Readonly<{
5
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
6
+ onAccessibilityTap?: (() => unknown) | undefined;
7
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
8
+ onMagicTap?: (() => unknown) | undefined;
9
+ onAccessibilityEscape?: (() => unknown) | undefined;
10
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
11
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
12
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
13
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
14
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
15
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
16
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
17
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
18
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
19
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
20
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
21
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
22
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
23
+ }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
24
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
25
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
26
+ }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
27
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
28
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
29
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
30
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
31
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
32
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
33
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
34
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
35
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
36
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
37
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
38
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
39
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
40
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
48
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
49
+ }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
50
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
51
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
52
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
53
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
54
+ }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
55
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
56
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
57
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
58
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
59
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
60
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
61
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
62
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
63
+ }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
64
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
65
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
66
+ renderToHardwareTextureAndroid?: boolean | undefined;
67
+ hasTVPreferredFocus?: boolean | undefined;
68
+ nextFocusDown?: number | undefined;
69
+ nextFocusForward?: number | undefined;
70
+ nextFocusLeft?: number | undefined;
71
+ nextFocusRight?: number | undefined;
72
+ nextFocusUp?: number | undefined;
73
+ focusable?: boolean | undefined;
74
+ tabIndex?: 0 | -1;
75
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
76
+ }>, "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
77
+ shouldRasterizeIOS?: boolean | undefined;
78
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
79
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
80
+ "aria-labelledby"?: string | undefined;
81
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
82
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
83
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
84
+ screenReaderFocusable?: boolean;
85
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
86
+ accessibilityIgnoresInvertColors?: boolean | undefined;
87
+ accessibilityViewIsModal?: boolean | undefined;
88
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
89
+ accessibilityLargeContentTitle?: string | undefined;
90
+ "aria-modal"?: boolean | undefined;
91
+ accessibilityElementsHidden?: boolean | undefined;
92
+ accessibilityLanguage?: string | undefined;
93
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
94
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
95
+ accessible?: boolean | undefined;
96
+ accessibilityLabel?: string | undefined;
97
+ accessibilityHint?: string | undefined;
98
+ "aria-label"?: string | undefined;
99
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
100
+ role?: import("react-native").Role | undefined;
101
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
102
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
103
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
104
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
105
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
106
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
107
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
108
+ "aria-busy"?: boolean | undefined;
109
+ "aria-checked"?: (boolean | undefined) | "mixed";
110
+ "aria-disabled"?: boolean | undefined;
111
+ "aria-expanded"?: boolean | undefined;
112
+ "aria-selected"?: boolean | undefined;
113
+ "aria-hidden"?: boolean | undefined;
114
+ }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
115
+ children?: React.ReactNode;
116
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
117
+ collapsable?: boolean | undefined;
118
+ collapsableChildren?: boolean | undefined;
119
+ id?: string;
120
+ testID?: string | undefined;
121
+ nativeID?: string | undefined;
122
+ needsOffscreenAlphaCompositing?: boolean | undefined;
123
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
124
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
125
+ removeClippedSubviews?: boolean | undefined;
126
+ experimental_accessibilityOrder?: Array<string> | undefined;
127
+ }>, never>> & import("react").RefAttributes<NativeAdViewHandler>>;
6
128
  //# sourceMappingURL=NativeAdView.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"NativeAdView.d.ts","sourceRoot":"","sources":["../../../../../src/nativeAd/NativeAdView.tsx"],"names":[],"mappings":"AACA,OAAO,EAA0E,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAGtH,OAAO,KAAK,EAAE,mBAAmB,EAAqB,MAAM,4BAA4B,CAAC;AAezF,eAAO,MAAM,YAAY;;mEAyBvB,CAAC"}
1
+ {"version":3,"file":"NativeAdView.d.ts","sourceRoot":"","sources":["../../../../../src/nativeAd/NativeAdView.tsx"],"names":[],"mappings":"AAmBA,OAAO,KAAK,EACV,mBAAmB,EAEpB,MAAM,4BAA4B,CAAC;AAsBpC,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iEA8BvB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"NativeAdViewComponents.d.ts","sourceRoot":"","sources":["../../../../../src/nativeAd/NativeAdViewComponents.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAa,SAAS,EAAyB,SAAS,EAAE,MAAM,cAAc,CAAC;AAoMvG,eAAO,MAAM,SAAS,GAAI,OAAO,SAAS,4CAEzC,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,OAAO,SAAS,4CAExC,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,OAAO,SAAS,4CAgBhD,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,OAAO,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,4CAMzD,CAAC;AAEF,eAAO,MAAM,SAAS,GAAI,OAAO,SAAS,4CAKzC,CAAC"}
1
+ {"version":3,"file":"NativeAdViewComponents.d.ts","sourceRoot":"","sources":["../../../../../src/nativeAd/NativeAdViewComponents.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EACV,UAAU,EAEV,SAAS,EAGT,SAAS,EACV,MAAM,cAAc,CAAC;AAkNtB,eAAO,MAAM,SAAS,GAAI,OAAO,SAAS,4CAEzC,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,OAAO,SAAS,4CAExC,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,OAAO,SAAS,4CAgBhD,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,OAAO,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,4CAMzD,CAAC;AAEF,eAAO,MAAM,SAAS,GAAI,OAAO,SAAS,4CAKzC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"NativeAdViewProvider.d.ts","sourceRoot":"","sources":["../../../../../src/nativeAd/NativeAdViewProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAClD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAEpE,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,SAAS,CAAC,iBAAiB,CAAC,GAAG,aAAa,CAAC;AAElF,MAAM,MAAM,uBAAuB,GAAG;IACpC,YAAY,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACtC,eAAe,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,gBAAgB,GAAG,IAAI,CAAC,CAAC,CAAC;CAChF,CAAC;AAGF,eAAO,MAAM,mBAAmB,wCAG9B,CAAC;AAEH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,QAAQ,EAAE,SAAS,CAAA;CAAE,CAYlE,CAAC"}
1
+ {"version":3,"file":"NativeAdViewProvider.d.ts","sourceRoot":"","sources":["../../../../../src/nativeAd/NativeAdViewProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAClD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAEpE,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,SAAS,CAAC,iBAAiB,CAAC,GAC/D,aAAa,CAAC;AAEhB,MAAM,MAAM,uBAAuB,GAAG;IACpC,YAAY,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACtC,eAAe,EAAE,KAAK,CAAC,QAAQ,CAC7B,KAAK,CAAC,cAAc,CAAC,gBAAgB,GAAG,IAAI,CAAC,CAC9C,CAAC;CACH,CAAC;AAEF,eAAO,MAAM,mBAAmB,wCAG9B,CAAC;AAEH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,QAAQ,EAAE,SAAS,CAAA;CAAE,CAoBlE,CAAC"}
@@ -1,5 +1,5 @@
1
- import type { AdFormat } from "../AdBannerView";
2
- import type { AdProps } from "./AdProps";
1
+ import type { AdFormat } from '../AdBannerView';
2
+ import type { AdProps } from './AdProps';
3
3
  export type AdBannerViewHandler = {
4
4
  /**
5
5
  * If the {@link loadOnMount} attribute is set to false, you can call this API to start loading ads in this AdView.
@@ -1 +1 @@
1
- {"version":3,"file":"AdBannerViewProps.d.ts","sourceRoot":"","sources":["../../../../../src/types/AdBannerViewProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,MAAM,MAAM,mBAAmB,GAAG;IACjC;;OAEG;IACH,MAAM,IAAI,IAAI,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,OAAO,GAAG;IACzC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,QAAQ,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;CACpB,CAAA"}
1
+ {"version":3,"file":"AdBannerViewProps.d.ts","sourceRoot":"","sources":["../../../../../src/types/AdBannerViewProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,MAAM,MAAM,mBAAmB,GAAG;IAChC;;OAEG;IACH,MAAM,IAAI,IAAI,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,OAAO,GAAG;IACxC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,QAAQ,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC"}
@@ -4,4 +4,28 @@ export type AdEventListener<T extends AdEventObject> = (event: T) => void;
4
4
  export type AdNativeEvent<T extends AdEventObject> = {
5
5
  nativeEvent: T;
6
6
  };
7
+ export declare enum AdEventType {
8
+ LOADED = "LOADED",
9
+ LOAD_FAILED = "LOAD_FAILED",
10
+ CLICKED = "CLICKED",
11
+ DISPLAYED = "DISPLAYED",
12
+ FAILED_TO_DISPLAY = "FAILED_TO_DISPLAY",
13
+ HIDDEN = "HIDDEN",
14
+ IMPRESSION_RECORDED = "IMPRESSION_RECORDED"
15
+ }
16
+ export declare enum RewardedAdEventType {
17
+ RECEIVED_REWARD = "RECEIVED_REWARD"
18
+ }
19
+ export interface AdEventPayloadMap {
20
+ [AdEventType.LOADED]: AdInfo;
21
+ [AdEventType.LOAD_FAILED]: AdLoadFailedInfo;
22
+ [AdEventType.CLICKED]: AdInfo;
23
+ [AdEventType.DISPLAYED]: AdInfo;
24
+ [AdEventType.FAILED_TO_DISPLAY]: AdDisplayFailedInfo;
25
+ [AdEventType.HIDDEN]: AdInfo;
26
+ [AdEventType.IMPRESSION_RECORDED]: AdInfo;
27
+ }
28
+ export interface RewardedAdEventPayloadMap extends AdEventPayloadMap {
29
+ [RewardedAdEventType.RECEIVED_REWARD]: AdRewardInfo;
30
+ }
7
31
  //# sourceMappingURL=AdEvent.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AdEvent.d.ts","sourceRoot":"","sources":["../../../../../src/types/AdEvent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAE5F,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,gBAAgB,GAAG,mBAAmB,GAAG,YAAY,CAAC;AAG3F,MAAM,MAAM,eAAe,CAAC,CAAC,SAAS,aAAa,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,CAAC;AAG1E,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,aAAa,IAAI;IAAE,WAAW,EAAE,CAAC,CAAA;CAAE,CAAC"}
1
+ {"version":3,"file":"AdEvent.d.ts","sourceRoot":"","sources":["../../../../../src/types/AdEvent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EACN,gBAAgB,EAChB,mBAAmB,EACnB,YAAY,EACb,MAAM,UAAU,CAAC;AAElB,MAAM,MAAM,aAAa,GACrB,MAAM,GACN,gBAAgB,GAChB,mBAAmB,GACnB,YAAY,CAAC;AAGjB,MAAM,MAAM,eAAe,CAAC,CAAC,SAAS,aAAa,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,CAAC;AAG1E,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,aAAa,IAAI;IAAE,WAAW,EAAE,CAAC,CAAA;CAAE,CAAC;AAExE,oBAAY,WAAW;IACrB,MAAM,WAAW;IACjB,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,iBAAiB,sBAAsB;IACvC,MAAM,WAAW;IACjB,mBAAmB,wBAAwB;CAC5C;AAED,oBAAY,mBAAmB;IAC7B,eAAe,oBAAoB;CACpC;AAED,MAAM,WAAW,iBAAiB;IAChC,CAAC,WAAW,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAC7B,CAAC,WAAW,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC;IAC5C,CAAC,WAAW,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAC9B,CAAC,WAAW,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAChC,CAAC,WAAW,CAAC,iBAAiB,CAAC,EAAE,mBAAmB,CAAC;IACrD,CAAC,WAAW,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAC7B,CAAC,WAAW,CAAC,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC3C;AAED,MAAM,WAAW,yBAA0B,SAAQ,iBAAiB;IAClE,CAAC,mBAAmB,CAAC,eAAe,CAAC,EAAE,YAAY,CAAC;CACrD"}
@@ -1 +1 @@
1
- {"version":3,"file":"AdInfo.d.ts","sourceRoot":"","sources":["../../../../../src/types/AdInfo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAG9C,MAAM,MAAM,MAAM,GAAG;IAEjB,QAAQ,EAAE,MAAM,CAAC;IAEjB,aAAa,EAAE,MAAM,CAAC;CACzB,CAAC;AAGF,MAAM,MAAM,gBAAgB,GAAG;IAE3B,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,EAAE,SAAS,CAAC;IAEhB,OAAO,EAAE,MAAM,CAAC;IAGhB,aAAa,EAAE,MAAM,CAAC;CACzB,CAAC;AAGF,MAAM,MAAM,mBAAmB,GAAG;IAC9B,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAGF,MAAM,MAAM,YAAY,GAAG;IAEvB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAG5B,YAAY,EAAE,MAAM,CAAC;CACxB,CAAC"}
1
+ {"version":3,"file":"AdInfo.d.ts","sourceRoot":"","sources":["../../../../../src/types/AdInfo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAG9C,MAAM,MAAM,MAAM,GAAG;IAEnB,QAAQ,EAAE,MAAM,CAAC;IAEjB,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAGF,MAAM,MAAM,gBAAgB,GAAG;IAE7B,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,EAAE,SAAS,CAAC;IAEhB,OAAO,EAAE,MAAM,CAAC;IAGhB,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAGF,MAAM,MAAM,mBAAmB,GAAG;IAChC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;CACxB,CAAC;AAGF,MAAM,MAAM,YAAY,GAAG;IAEzB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAG5B,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC"}
@@ -1,5 +1,5 @@
1
- import type { AdLoadFailedInfo } from "./AdInfo";
2
- import type { AdInfo } from "./AdInfo";
1
+ import type { AdLoadFailedInfo } from './AdInfo';
2
+ import type { AdInfo } from './AdInfo';
3
3
  export type AdProps = {
4
4
  adUnitId: string;
5
5
  placement?: string | null;
@@ -1 +1 @@
1
- {"version":3,"file":"AdProps.d.ts","sourceRoot":"","sources":["../../../../../src/types/AdProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEjD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,MAAM,OAAO,GAAG;IAElB,QAAQ,EAAE,MAAM,CAAC;IAEjB,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B,UAAU,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IAEtC,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAEnD,WAAW,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IAEvC,sBAAsB,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CACrD,CAAC"}
1
+ {"version":3,"file":"AdProps.d.ts","sourceRoot":"","sources":["../../../../../src/types/AdProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEjD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,MAAM,OAAO,GAAG;IACpB,QAAQ,EAAE,MAAM,CAAC;IAEjB,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B,UAAU,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IAEtC,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAEnD,WAAW,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IAEvC,sBAAsB,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CACnD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"DaroMMobileAds.d.ts","sourceRoot":"","sources":["../../../../../src/types/DaroMMobileAds.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,cAAc,GAAG;IAE5B,aAAa,EAAE,MAAM,OAAO,CAAC,OAAO,CAAC,CAAC;IACtC,UAAU,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9C,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;CAE7C,CAAC"}
1
+ {"version":3,"file":"DaroMMobileAds.d.ts","sourceRoot":"","sources":["../../../../../src/types/DaroMMobileAds.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,GAAG;IAC3B,aAAa,EAAE,MAAM,OAAO,CAAC,OAAO,CAAC,CAAC;IACtC,UAAU,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9C,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;CAC9C,CAAC"}
@@ -1,8 +1,4 @@
1
- import type { ColorValue } from "react-native";
2
- import type { FullScreenAdType } from "./FullScreenAd";
3
- export interface LightPopupAdType extends FullScreenAdType {
4
- setLightPopupAdConfiguration: (adUnitId: string, configuration: LightPopupAdConfiguration) => void;
5
- }
1
+ import type { ColorValue } from 'react-native';
6
2
  export interface LightPopupAdConfiguration {
7
3
  backgroundColor?: ColorValue;
8
4
  cardViewBackgroundColor?: ColorValue;
@@ -1 +1 @@
1
- {"version":3,"file":"LightPopupAd.d.ts","sourceRoot":"","sources":["../../../../../src/types/LightPopupAd.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAEvD,MAAM,WAAW,gBAAiB,SAAQ,gBAAgB;IACxD,4BAA4B,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,aAAa,EAAE,yBAAyB,KAAK,IAAI,CAAC;CACpG;AAED,MAAM,WAAW,yBAAyB;IACxC,eAAe,CAAC,EAAE,UAAU,CAAC;IAC7B,uBAAuB,CAAC,EAAE,UAAU,CAAC;IACrC,oBAAoB,CAAC,EAAE,UAAU,CAAC;IAClC,0BAA0B,CAAC,EAAE,UAAU,CAAC;IACxC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,oBAAoB,CAAC,EAAE,UAAU,CAAC;IAClC,cAAc,CAAC,EAAE,UAAU,CAAC;IAC5B,aAAa,CAAC,EAAE,UAAU,CAAC;IAC3B,kBAAkB,CAAC,EAAE,UAAU,CAAC;IAChC,wBAAwB,CAAC,EAAE,UAAU,CAAC;CACvC"}
1
+ {"version":3,"file":"LightPopupAd.d.ts","sourceRoot":"","sources":["../../../../../src/types/LightPopupAd.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,WAAW,yBAAyB;IACxC,eAAe,CAAC,EAAE,UAAU,CAAC;IAC7B,uBAAuB,CAAC,EAAE,UAAU,CAAC;IACrC,oBAAoB,CAAC,EAAE,UAAU,CAAC;IAClC,0BAA0B,CAAC,EAAE,UAAU,CAAC;IACxC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,oBAAoB,CAAC,EAAE,UAAU,CAAC;IAClC,cAAc,CAAC,EAAE,UAAU,CAAC;IAC5B,aAAa,CAAC,EAAE,UAAU,CAAC;IAC3B,kBAAkB,CAAC,EAAE,UAAU,CAAC;IAChC,wBAAwB,CAAC,EAAE,UAAU,CAAC;CACvC"}
@@ -1 +1 @@
1
- {"version":3,"file":"NativeAdViewProps.d.ts","sourceRoot":"","sources":["../../../../../src/types/NativeAdViewProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG;IACjC;;OAEG;IACH,MAAM,IAAI,IAAI,CAAC;CACf,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,GAAG;IACzC,WAAW,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC"}
1
+ {"version":3,"file":"NativeAdViewProps.d.ts","sourceRoot":"","sources":["../../../../../src/types/NativeAdViewProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAChC;;OAEG;IACH,MAAM,IAAI,IAAI,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,GAAG;IACxC,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC"}
@@ -0,0 +1,19 @@
1
+ import type { ConfigPlugin } from 'expo/config-plugins';
2
+ export type DaroMediation = 'admob' | 'max';
3
+ export type DaroIosProps = {
4
+ daroAppKey: string;
5
+ daroKeyFile: string;
6
+ admobAppId?: string;
7
+ attUsageDescription?: string;
8
+ };
9
+ export type DaroAndroidProps = {
10
+ daroAppKey: string;
11
+ daroKeyFile: string;
12
+ };
13
+ export type DaroPluginProps = {
14
+ ios: DaroIosProps;
15
+ android: DaroAndroidProps;
16
+ };
17
+ declare const withDaro: ConfigPlugin<DaroPluginProps>;
18
+ export default withDaro;
19
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../plugin/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAMxD,MAAM,MAAM,aAAa,GAAG,OAAO,GAAG,KAAK,CAAC;AAE5C,MAAM,MAAM,YAAY,GAAG;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,GAAG,EAAE,YAAY,CAAC;IAClB,OAAO,EAAE,gBAAgB,CAAC;CAC3B,CAAC;AAqBF,QAAA,MAAM,QAAQ,EAAE,YAAY,CAAC,eAAe,CAsB3C,CAAC;AAEF,eAAe,QAAQ,CAAC"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Daro 미디에이션 네트워크가 요구하는 SKAdNetwork 식별자 목록.
3
+ * Info.plist의 SKAdNetworkItems 배열에 머지된다.
4
+ */
5
+ export declare const DARO_SK_AD_NETWORK_IDS: readonly string[];
6
+ //# sourceMappingURL=skAdNetworkIds.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"skAdNetworkIds.d.ts","sourceRoot":"","sources":["../../../../../plugin/src/skAdNetworkIds.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,sBAAsB,EAAE,SAAS,MAAM,EAqMnD,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { ConfigPlugin } from 'expo/config-plugins';
2
+ import type { DaroAndroidProps, DaroMediation } from './index';
3
+ type DaroResolvedAndroidProps = DaroAndroidProps & {
4
+ mediation: DaroMediation;
5
+ };
6
+ export declare const withAndroidConfiguration: ConfigPlugin<DaroResolvedAndroidProps>;
7
+ export {};
8
+ //# sourceMappingURL=withAndroid.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"withAndroid.d.ts","sourceRoot":"","sources":["../../../../../plugin/src/withAndroid.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAUxD,OAAO,KAAK,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAiB/D,KAAK,wBAAwB,GAAG,gBAAgB,GAAG;IAAE,SAAS,EAAE,aAAa,CAAA;CAAE,CAAC;AAiBhF,eAAO,MAAM,wBAAwB,EAAE,YAAY,CACjD,wBAAwB,CAwIzB,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { ConfigPlugin } from 'expo/config-plugins';
2
+ import type { DaroIosProps, DaroMediation } from './index';
3
+ type DaroResolvedIosProps = DaroIosProps & {
4
+ mediation: DaroMediation;
5
+ };
6
+ export declare const withIosConfiguration: ConfigPlugin<DaroResolvedIosProps>;
7
+ export {};
8
+ //# sourceMappingURL=withIos.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"withIos.d.ts","sourceRoot":"","sources":["../../../../../plugin/src/withIos.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAQxD,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAQ3D,KAAK,oBAAoB,GAAG,YAAY,GAAG;IAAE,SAAS,EAAE,aAAa,CAAA;CAAE,CAAC;AAExE,eAAO,MAAM,oBAAoB,EAAE,YAAY,CAAC,oBAAoB,CAiEnE,CAAC"}
@@ -1,4 +1,3 @@
1
- import { type ViewProps } from 'react-native';
2
1
  import type { AdBannerViewHandler } from './types/AdBannerViewProps';
3
2
  export declare enum AdFormat {
4
3
  BANNER,
@@ -9,5 +8,128 @@ export declare const AdBannerView: import("react").ForwardRefExoticComponent<imp
9
8
  adFormat: AdFormat;
10
9
  loadOnMount?: boolean;
11
10
  isVisible?: boolean;
12
- } & ViewProps & import("react").RefAttributes<AdBannerViewHandler>>;
11
+ } & Readonly<Omit<Readonly<{
12
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
13
+ onAccessibilityTap?: (() => unknown) | undefined;
14
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
15
+ onMagicTap?: (() => unknown) | undefined;
16
+ onAccessibilityEscape?: (() => unknown) | undefined;
17
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
18
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
19
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
20
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
21
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
22
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
23
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
24
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
25
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
26
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
27
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
28
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
29
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
30
+ }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
31
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
32
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
33
+ }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
34
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
35
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
36
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
37
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
38
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
39
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
40
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
41
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
42
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
48
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
49
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
50
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
51
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
52
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
53
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
54
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
55
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
56
+ }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
57
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
58
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
59
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
60
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
61
+ }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
62
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
63
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
64
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
65
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
66
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
67
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
68
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
69
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
70
+ }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
71
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
72
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
73
+ renderToHardwareTextureAndroid?: boolean | undefined;
74
+ hasTVPreferredFocus?: boolean | undefined;
75
+ nextFocusDown?: number | undefined;
76
+ nextFocusForward?: number | undefined;
77
+ nextFocusLeft?: number | undefined;
78
+ nextFocusRight?: number | undefined;
79
+ nextFocusUp?: number | undefined;
80
+ focusable?: boolean | undefined;
81
+ tabIndex?: 0 | -1;
82
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
83
+ }>, "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
84
+ shouldRasterizeIOS?: boolean | undefined;
85
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
86
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
87
+ "aria-labelledby"?: string | undefined;
88
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
89
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
90
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
91
+ screenReaderFocusable?: boolean;
92
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
93
+ accessibilityIgnoresInvertColors?: boolean | undefined;
94
+ accessibilityViewIsModal?: boolean | undefined;
95
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
96
+ accessibilityLargeContentTitle?: string | undefined;
97
+ "aria-modal"?: boolean | undefined;
98
+ accessibilityElementsHidden?: boolean | undefined;
99
+ accessibilityLanguage?: string | undefined;
100
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
101
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
102
+ accessible?: boolean | undefined;
103
+ accessibilityLabel?: string | undefined;
104
+ accessibilityHint?: string | undefined;
105
+ "aria-label"?: string | undefined;
106
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
107
+ role?: import("react-native").Role | undefined;
108
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
109
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
110
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
111
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
112
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
113
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
114
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
115
+ "aria-busy"?: boolean | undefined;
116
+ "aria-checked"?: (boolean | undefined) | "mixed";
117
+ "aria-disabled"?: boolean | undefined;
118
+ "aria-expanded"?: boolean | undefined;
119
+ "aria-selected"?: boolean | undefined;
120
+ "aria-hidden"?: boolean | undefined;
121
+ }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
122
+ children?: React.ReactNode;
123
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
124
+ collapsable?: boolean | undefined;
125
+ collapsableChildren?: boolean | undefined;
126
+ id?: string;
127
+ testID?: string | undefined;
128
+ nativeID?: string | undefined;
129
+ needsOffscreenAlphaCompositing?: boolean | undefined;
130
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
131
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
132
+ removeClippedSubviews?: boolean | undefined;
133
+ experimental_accessibilityOrder?: Array<string> | undefined;
134
+ }>, never>> & import("react").RefAttributes<AdBannerViewHandler>>;
13
135
  //# sourceMappingURL=AdBannerView.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AdBannerView.d.ts","sourceRoot":"","sources":["../../../../src/AdBannerView.tsx"],"names":[],"mappings":"AACA,OAAO,EAAmH,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAC/J,OAAO,KAAK,EAAE,mBAAmB,EAAqB,MAAM,2BAA2B,CAAC;AAWxF,oBAAY,QAAQ;IAClB,MAA+B;IAC/B,IAA2B;CAC5B;AAqBD,eAAO,MAAM,YAAY;;;;;mEAsGvB,CAAC"}
1
+ {"version":3,"file":"AdBannerView.d.ts","sourceRoot":"","sources":["../../../../src/AdBannerView.tsx"],"names":[],"mappings":"AAkBA,OAAO,KAAK,EACV,mBAAmB,EAEpB,MAAM,2BAA2B,CAAC;AASnC,oBAAY,QAAQ;IAClB,MAA+B;IAC/B,IAA2B;CAC5B;AAuBD,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iEAwHvB,CAAC"}
@@ -1,4 +1,55 @@
1
- import type { AppOpenAdType } from './types/AppOpenAd';
2
- export declare const AppOpenAd: AppOpenAdType;
1
+ import type { AdDisplayFailedInfo, AdInfo, AdLoadFailedInfo } from './types/AdInfo';
2
+ import { AdEventType, type AdEventPayloadMap } from './types/AdEvent';
3
+ export declare class AppOpenAd {
4
+ private readonly requestId;
5
+ private readonly adUnitId;
6
+ private static _nextRequestId;
7
+ private static _legacyRequestIds;
8
+ private static _legacyRequestIdSet;
9
+ private readonly eventEmitter;
10
+ private constructor();
11
+ static createForAdRequest(adUnitId: string): AppOpenAd;
12
+ isAdReady(): Promise<boolean>;
13
+ load(): void;
14
+ show(placement?: string | null, customData?: string | null): void;
15
+ addAdEventListener<T extends AdEventType>(type: T, listener: (info: AdEventPayloadMap[T]) => void): () => void;
16
+ removeAllListeners(): void;
17
+ private static _getLegacyRequestId;
18
+ private static _addLegacyEventListener;
19
+ /** @deprecated `AppOpenAd.createForAdRequest(adUnitId)` 인스턴스의 `isAdReady()`를 사용하세요. */
20
+ static isAdReady(adUnitId: string): Promise<boolean>;
21
+ /** @deprecated `AppOpenAd.createForAdRequest(adUnitId)` 인스턴스의 `load()`를 사용하세요. */
22
+ static loadAd(adUnitId: string): void;
23
+ /** @deprecated `AppOpenAd.createForAdRequest(adUnitId)` 인스턴스의 `show()`를 사용하세요. */
24
+ static showAd(adUnitId: string, placement?: string | null, customData?: string | null): void;
25
+ /** @deprecated `addAdEventListener(AdEventType.LOADED, ...)`를 인스턴스에서 사용하세요. */
26
+ static addAdLoadedEventListener(listener: (adInfo: AdInfo) => void): void;
27
+ /** @deprecated 인스턴스의 `addAdEventListener` disposer를 사용하세요. */
28
+ static removeAdLoadedEventListener(): void;
29
+ /** @deprecated `addAdEventListener(AdEventType.LOAD_FAILED, ...)`를 인스턴스에서 사용하세요. */
30
+ static addAdLoadFailedEventListener(listener: (errorInfo: AdLoadFailedInfo) => void): void;
31
+ /** @deprecated 인스턴스의 `addAdEventListener` disposer를 사용하세요. */
32
+ static removeAdLoadFailedEventListener(): void;
33
+ /** @deprecated `addAdEventListener(AdEventType.CLICKED, ...)`를 인스턴스에서 사용하세요. */
34
+ static addAdClickedEventListener(listener: (adInfo: AdInfo) => void): void;
35
+ /** @deprecated 인스턴스의 `addAdEventListener` disposer를 사용하세요. */
36
+ static removeAdClickedEventListener(): void;
37
+ /** @deprecated `addAdEventListener(AdEventType.DISPLAYED, ...)`를 인스턴스에서 사용하세요. */
38
+ static addAdDisplayedEventListener(listener: (adInfo: AdInfo) => void): void;
39
+ /** @deprecated 인스턴스의 `addAdEventListener` disposer를 사용하세요. */
40
+ static removeAdDisplayedEventListener(): void;
41
+ /** @deprecated `addAdEventListener(AdEventType.FAILED_TO_DISPLAY, ...)`를 인스턴스에서 사용하세요. */
42
+ static addAdFailedToDisplayEventListener(listener: (errorInfo: AdDisplayFailedInfo) => void): void;
43
+ /** @deprecated 인스턴스의 `addAdEventListener` disposer를 사용하세요. */
44
+ static removeAdFailedToDisplayEventListener(): void;
45
+ /** @deprecated `addAdEventListener(AdEventType.HIDDEN, ...)`를 인스턴스에서 사용하세요. */
46
+ static addAdHiddenEventListener(listener: (adInfo: AdInfo) => void): void;
47
+ /** @deprecated 인스턴스의 `addAdEventListener` disposer를 사용하세요. */
48
+ static removeAdHiddenEventListener(): void;
49
+ /** @deprecated `addAdEventListener(AdEventType.IMPRESSION_RECORDED, ...)`를 인스턴스에서 사용하세요. */
50
+ static addAdImpressionRecordedListener(listener: (adInfo: AdInfo) => void): void;
51
+ /** @deprecated 인스턴스의 `addAdEventListener` disposer를 사용하세요. */
52
+ static removeAdImpressionRecordedListener(): void;
53
+ }
3
54
  export default AppOpenAd;
4
55
  //# sourceMappingURL=AppOpenAd.d.ts.map