react-native-uaepass
Version:
React-native module for UAE Pass
17 lines (16 loc) • 646 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.UAEPass = void 0;
var _reactNative = require("react-native");
const LINKING_ERROR = `The package 'react-native-uaepass' doesn't seem to be linked. Make sure: \n\n` + _reactNative.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';
const UAEPass = exports.UAEPass = _reactNative.NativeModules.UAEPass ? _reactNative.NativeModules.UAEPass : new Proxy({}, {
get() {
throw new Error(LINKING_ERROR);
}
});
//# sourceMappingURL=index.js.map