UNPKG

formgen-react

Version:

Formula generator with JSON for react. UI Fabric controls are used for rendering

10 lines (9 loc) 272 B
import { JsonCustomConvert } from "json2typescript"; import { Row } from "../Row"; /** * Json Converter for a Row */ export declare class RowConverter implements JsonCustomConvert<Row[]> { serialize(rows: Row[]): any; deserialize(rowsJson: any): Row[]; }