UNPKG

mindee

Version:

Mindee Client Library for Node.js

13 lines (12 loc) 292 B
import { MvisionV1 } from "./mvisionV1.js"; export class Ocr { constructor(rawPrediction) { this.mVisionV1 = new MvisionV1(rawPrediction["mvision-v1"]); } /** * Default string representation. */ toString() { return this.mVisionV1.toString(); } }