UNPKG

react-native-mjdunion

Version:

react-native library for JD Union

21 lines (14 loc) 545 B
import { NativeModules } from 'react-native'; const { RNReactNativeMjdunion } = NativeModules; export async function initSDK(params) { return await RNReactNativeMjdunion.initSDK(params); } export async function showJXItemByUrl(params) { return await RNReactNativeMjdunion.showJXItemByUrl(params); } export async function showJXLiteItemByUrl(params) { return await RNReactNativeMjdunion.showJXLiteItemByUrl(params); } export async function showItemByUrl(params) { return await RNReactNativeMjdunion.showItemByUrl(params); }