formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
14 lines (13 loc) • 386 B
TypeScript
import { ValidatorTypes } from "../Enums";
import { Translate } from "./jsonConverters/TransConverter";
/**
* Form Validator Representation for an validator json object.
*/
export declare class FormValidator {
Message: string;
ValidatorType: ValidatorTypes;
MessageTranslates?: Translate[];
Value: Number;
Regex: string;
CustomTypeName: string;
}