UNPKG

@wowmaking/react-native-iron-source

Version:

React Native package to interface the ironSource SDK. https://ironsrc.com

16 lines (12 loc) 341 B
import { NativeModules } from 'react-native'; const RNIronSource = NativeModules.RNIronSource; const defaultOptions = { validateIntegration: false, }; module.exports = { ...RNIronSource, initializeIronSource: (key, userId, options) => RNIronSource.initializeIronSource(key, userId, { ...defaultOptions, ...options, }), };