formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
10 lines (9 loc) • 335 B
TypeScript
import { JsonCustomConvert } from "json2typescript";
import { ControlTypes } from "../../Enums";
/**
* Json Converter for a ControlType Enum
*/
export declare class ControlTypeConverter implements JsonCustomConvert<ControlTypes> {
serialize(controlType: ControlTypes): any;
deserialize(typeJson: any): ControlTypes;
}