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.

29 lines (23 loc) 550 B
import { DocumentsDatabase } from "./DocumentsDatabase"; /** * Class contains properties to get the information about the SDK. */ export declare class DocReaderVersion { /** * A version of the API framework. */ readonly api?: string; /** * A version of the Core framework. */ readonly core?: string; /** * A type of the Core framework. */ readonly coreMode?: string; /** * A version of the database. */ readonly database?: DocumentsDatabase; private constructor(); }