formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
16 lines (15 loc) • 429 B
TypeScript
import { Translate } from "./jsonConverters/TransConverter";
/**
* Property for an Translation of an Property at an object. The key has to be delimited with .
* Eg: Object.SubObject.propertyName
*/
export declare class Property {
Key: string;
ObjectTranslates: Translate[];
}
/**
* Collection of Properties to translate in an object.
*/
export declare class ObjectTranslate {
Properties: Property[];
}