UNPKG

mindee

Version:

Mindee Client Library for Node.js

14 lines (13 loc) 442 B
import { StringDict } from "../../../parsing/stringDict.js"; import { OcrInference } from "./ocrInference.js"; import { BaseResponse } from "../../../v2/parsing/index.js"; export declare class OcrResponse extends BaseResponse { /** * Response for an OCR utility inference. */ inference: OcrInference; /** * @param serverResponse JSON response from the server. */ constructor(serverResponse: StringDict); }