mindee
Version:
Mindee Client Library for Node.js
17 lines (16 loc) • 586 B
TypeScript
import { StringDict } from "../../../parsing/stringDict.js";
import { ExtractionResult } from "./extractionResult.js";
import { ExtractionActiveOptions } from "./extractionActiveOptions.js";
import { BaseInference } from "../../../v2/parsing/inference/baseInference.js";
export declare class ExtractionInference extends BaseInference {
/**
* Result of the inference.
*/
result: ExtractionResult;
/**
* Active options for the inference.
*/
activeOptions: ExtractionActiveOptions;
constructor(serverResponse: StringDict);
toString(): string;
}