mindee
Version:
Mindee Client Library for Node.js
30 lines (29 loc) • 759 B
TypeScript
import { StringDict } from "../common";
import { InferenceModel } from "./inferenceModel";
import { InferenceResult } from "./inferenceResult";
import { InferenceFile } from "./inferenceFile";
import { InferenceActiveOptions } from "./inferenceActiveOptions";
export declare class Inference {
/**
* Model info for the inference.
*/
model: InferenceModel;
/**
* File info for the inference.
*/
file: InferenceFile;
/**
* Result of the inference.
*/
result: InferenceResult;
/**
* ID of the inference.
*/
id?: string;
/**
* Active options for the inference.
*/
activeOptions: InferenceActiveOptions;
constructor(serverResponse: StringDict);
toString(): string;
}