UNPKG

@regulaforensics/document-reader

Version:

This is an npm module for Regula Document Reader SDK. It allows you to read various kinds of identification documents using your phone's camera.

18 lines (15 loc) 615 B
import 'zone.js'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic' import { BrowserModule } from '@angular/platform-browser' import { IonicModule, Platform } from '@ionic/angular' import { Dialogs } from '@awesome-cordova-plugins/dialogs/ngx' import { Camera } from '@awesome-cordova-plugins/camera/ngx' import { Main } from './src/main' import { NgModule } from '@angular/core' @NgModule({ bootstrap: [Main], providers: [Platform, Dialogs, Camera], imports: [BrowserModule, IonicModule.forRoot()] }) class MainModule { } platformBrowserDynamic().bootstrapModule(MainModule)