formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
10 lines (9 loc) • 332 B
TypeScript
import { IValidator } from "../validators/Validators";
/**
* Class for the Custom Validators. The Name as to be Name of Custom Validator
* The Type of Validator has to be the type of an Validator that Implement IValidator.
*/
export declare class CustomValidator {
typeName: string;
validatorType: IValidator;
}