UNPKG

mindee

Version:

Mindee Client Library for Node.js

12 lines (11 loc) 380 B
import { OcrInference } from "./ocrInference.js"; import { BaseResponse } from "../../../v2/parsing/index.js"; export class OcrResponse extends BaseResponse { /** * @param serverResponse JSON response from the server. */ constructor(serverResponse) { super(serverResponse); this.inference = new OcrInference(serverResponse["inference"]); } }