UNPKG

mindee

Version:

Mindee Client Library for Node.js

17 lines (16 loc) 550 B
import { Inference, StringDict, Page } from "../../../parsing/common"; import { PayslipV2Document } from "./payslipV2Document"; /** * Payslip API version 2 inference prediction. */ export declare class PayslipV2 extends Inference { /** The endpoint's name. */ endpointName: string; /** The endpoint's version. */ endpointVersion: string; /** The document-level prediction. */ prediction: PayslipV2Document; /** The document's pages. */ pages: Page<PayslipV2Document>[]; constructor(rawPrediction: StringDict); }