connect-react-native-sdk
Version:
React Native SDK for Mastercard Open Banking Connect
10 lines • 594 B
JavaScript
import { NativeModules, Platform } from 'react-native';
const LINKING_ERROR = `The package 'connect-react-native-sdk' doesn't seem to be linked. Make sure: \n\n` + Platform.select({
ios: "- You have run 'pod install'\n",
default: ''
}) + '- You rebuilt the app after installing the package\n' + '- You are not using Expo Go\n';
export const ConnectReactNativeSdk = NativeModules.ConnectReactNativeSdk ? NativeModules.ConnectReactNativeSdk : new Error(LINKING_ERROR);
export function checkLink(url) {
return ConnectReactNativeSdk?.checklink(url);
}
//# sourceMappingURL=nativeModule.js.map