UNPKG

sp-formgen-react

Version:

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

10 lines (9 loc) 320 B
import { JsonCustomConvert } from "json2typescript"; import { ListConfig } from "../ListConfig"; /** * Json Converter for a List Config */ export declare class ListConfigConverter implements JsonCustomConvert<ListConfig> { serialize(config: ListConfig): any; deserialize(configJson: any): ListConfig; }