mindee
Version:
Mindee Client Library for Node.js
9 lines (8 loc) • 327 B
TypeScript
/**
* Factory helper.
*/
import { StringDict } from "../../common";
import { ListField } from "./listField";
import { ObjectField } from "./objectField";
import { SimpleField } from "./simpleField";
export declare function createField(serverResponse: StringDict, indentLevel?: number): SimpleField | ObjectField | ListField;