react-native-persona
Version:
Launch a mobile native implementation of the Persona inquiry flow from React Native.
13 lines • 325 B
JavaScript
import { NativeModules } from 'react-native';
const {
PersonaInquiry2
} = NativeModules;
export class Versions {
/**
* @return version of the underlying Android/iOS Inquiry SDK
*/
static nativeSdkVersion() {
return PersonaInquiry2.getConstants().INQUIRY_SDK_VERSION;
}
}
//# sourceMappingURL=versions.js.map