mindee
Version:
Mindee Client Library for Node.js
17 lines (16 loc) • 621 B
TypeScript
import { Inference, StringDict, Page } from "../../parsing/common";
import { NutritionFactsLabelV1Document } from "./nutritionFactsLabelV1Document";
/**
* Nutrition Facts Label API version 1 inference prediction.
*/
export declare class NutritionFactsLabelV1 extends Inference {
/** The endpoint's name. */
endpointName: string;
/** The endpoint's version. */
endpointVersion: string;
/** The document-level prediction. */
prediction: NutritionFactsLabelV1Document;
/** The document's pages. */
pages: Page<NutritionFactsLabelV1Document>[];
constructor(rawPrediction: StringDict);
}