@passageidentity/passage-flex-react-native
Version:
Passkey Flex for React Native - Add native passkey authentication to your own React Native authentication flows with Passage by 1Password
17 lines (16 loc) • 749 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.PassageFlexReactNative = void 0;
var _reactNative = require("react-native");
const LINKING_ERROR = `The package 'passage-flex-react-native' 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 PassageFlexReactNative = exports.PassageFlexReactNative = _reactNative.NativeModules.PassageFlexReactNative ? _reactNative.NativeModules.PassageFlexReactNative : new Proxy({}, {
get() {
throw new Error(LINKING_ERROR);
}
});
//# sourceMappingURL=PassageFlexReactNativeModule.js.map