UNPKG

formgen-react

Version:

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

10 lines (9 loc) 344 B
import { JsonCustomConvert } from "json2typescript"; import { LabelPositions } from "../../Enums"; /** * Json Converter for a LabelPorision Enum */ export declare class LabelPositionConverter implements JsonCustomConvert<LabelPositions> { serialize(position: LabelPositions): any; deserialize(typeJson: any): LabelPositions; }