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) 398 B
export class Rect { bottom; top; left; right; static fromJson(jsonObject) { if (jsonObject == null) return null; const result = new Rect(); result.bottom = jsonObject["bottom"]; result.top = jsonObject["top"]; result.left = jsonObject["left"]; result.right = jsonObject["right"]; return result; } }