mindee
Version:
Mindee Client Library for Node.js
17 lines (16 loc) • 467 B
TypeScript
import { StringDict } from "../../../../parsing/index.js";
import { DataSchemaField } from "./dataSchemaField.js";
/**
* The structure to completely replace the data schema of the model.
*/
export declare class DataSchemaReplace {
/**
* List of fields in the Data Schema.
*/
fields: Array<DataSchemaField>;
constructor(dataSchemaReplace: StringDict);
toJSON(): {
fields: Record<string, unknown>[];
};
toString(): string;
}