sp-formgen-react
Version:
Formula generator for SharePoint with JSON for react. UI Fabric controls are used for rendering
17 lines (16 loc) • 496 B
TypeScript
import { ListConfig } from './ListConfig';
/**
* Object Fabric to convert json objects to javascript objects and visa versa.
*/
export declare class ObjectFabric {
/**
* Get a ListConfig object
* @param json The json object the get the config.
*/
static getListConfig(json: any): ListConfig;
/**
* Get the Json from an given ListConfig
* @param ctrol The ListConfig to serialize.
*/
static getJsonFromListConfig(config: ListConfig): any;
}