UNPKG

mindee

Version:

Mindee Client Library for Node.js

16 lines (15 loc) 477 B
import { InferenceFields } from "./field/inferenceFields"; import { InferenceResultOptions } from "./inferenceResultOptions"; import { StringDict } from "../common"; export declare class InferenceResult { /** * Fields contained in the inference. */ fields: InferenceFields; /** * Potential options retrieved alongside the inference. */ options?: InferenceResultOptions; constructor(serverResponse: StringDict); toString(): string; }