react-native-appodeal
Version:
React Native Module created to support Appodeal SDK for iOS and Android platforms
25 lines (18 loc) • 873 B
JavaScript
;
/**
* Main Appodeal SDK entry point
* Provides access to all Appodeal functionality including ads, analytics, and events
*/
// Main Appodeal interface
import Appodeal from "./RNAppodeal.js";
// React Native components
export { default as AppodealBanner } from "./RNAppodealBanner.js";
export { default as AppodealMrec } from "./RNAppodealMrec.js";
// Export the main Appodeal interface
export default Appodeal;
// Export all types and enums for convenience
export { AppodealAdType, AppodealLogLevel, AppodealConsentStatus, AppodealIOSPurchaseType, AppodealAndroidPurchaseType } from "./types/index.js";
// Export all type definitions
// Export event namespaces for ad event handling
export { AppodealSdkEvents, AppodealBannerEvents, AppodealInterstitialEvents, AppodealRewardedEvents } from "./RNAppodealEvents.js";
//# sourceMappingURL=index.js.map