UNPKG

@smile_identity/react-native-expo

Version:
41 lines 2.08 kB
// Reexport the native module. On web, it will be resolved to SmileIDExpoModule.web.ts // and on native platforms to SmileIDExpoModule.ts import SmileIDExpoModule from "./SmileIDExpoModule"; export { default } from './SmileIDExpoModule'; import SmileIDSmartSelfieEnrollmentView from './products/SmileIDSmartSelfieEnrollmentView'; export { SmileIDSmartSelfieEnrollmentView }; import SmileIDSmartSelfieEnrollmentEnhancedView from './products/SmileIDSmartSelfieEnrollmentEnhancedView'; export { SmileIDSmartSelfieEnrollmentEnhancedView }; import SmileIDDocumentVerificationView from './products/SmileIDDocumentVerificationView'; export { SmileIDDocumentVerificationView }; import SmileIDDocumentVerificationEnhancedView from './products/SmileIDDocumentVerificationEnhancedView'; export { SmileIDDocumentVerificationEnhancedView }; import SmileIDSmartSelfieAuthenticationView from "./products/SmileIDSmartSelfieAuthenticationView"; export { SmileIDSmartSelfieAuthenticationView }; import SmileIDSmartSelfieAuthenticationEnhancedView from "./products/SmileIDSmartSelfieAuthenticationEnhancedView"; export { SmileIDSmartSelfieAuthenticationEnhancedView }; import SmileIDBiometricKYCView from "./products/SmileIDBiometricKYCView"; export { SmileIDBiometricKYCView }; export * from './types/SmileIDExpo.types'; export function initialize(useSandBox, enableCrashReporting, config, apiKey) { return SmileIDExpoModule.initialize(useSandBox, enableCrashReporting, config, apiKey); } export function setCallbackUrl(callbackUrl) { return SmileIDExpoModule.setCallbackUrl(callbackUrl); } export function setAllowOfflineMode(allowOfflineMode) { return SmileIDExpoModule.setAllowOfflineMode(allowOfflineMode); } export function submitJob(jobId) { return SmileIDExpoModule.submitJob(jobId); } export function getSubmittedJobs() { return SmileIDExpoModule.getSubmittedJobs(); } export function getUnsubmittedJobs() { return SmileIDExpoModule.getUnsubmittedJobs(); } export function cleanup(jobId) { return SmileIDExpoModule.cleanup(jobId); } //# sourceMappingURL=index.js.map