react-native-persona
Version:
Launch a mobile native implementation of the Persona inquiry flow from React Native.
20 lines (19 loc) • 465 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Versions = void 0;
var _reactNative = require("react-native");
const {
PersonaInquiry2
} = _reactNative.NativeModules;
class Versions {
/**
* @return version of the underlying Android/iOS Inquiry SDK
*/
static nativeSdkVersion() {
return PersonaInquiry2.getConstants().INQUIRY_SDK_VERSION;
}
}
exports.Versions = Versions;
//# sourceMappingURL=versions.js.map
;