mindee
Version:
Mindee Client Library for Node.js
13 lines (12 loc) • 322 B
TypeScript
import { StringDict } from "../../../parsing/stringDict.js";
/**
* Data schema options activated during the inference.
*/
export declare class DataSchemaActiveOption {
/**
* Whether to replace the data schema.
*/
replace: boolean;
constructor(serverResponse: StringDict);
toString(): string;
}