12345678910111213141516171819202122232425262728293031323334353637 |
- export class ValidationMetadata {
-
-
-
- constructor(args) {
-
- this.groups = [];
-
- this.each = false;
-
- this.context = undefined;
- this.type = args.type;
- this.name = args.name;
- this.target = args.target;
- this.propertyName = args.propertyName;
- this.constraints = args === null || args === void 0 ? void 0 : args.constraints;
- this.constraintCls = args.constraintCls;
- this.validationTypeOptions = args.validationTypeOptions;
- if (args.validationOptions) {
- this.message = args.validationOptions.message;
- this.groups = args.validationOptions.groups;
- this.always = args.validationOptions.always;
- this.each = args.validationOptions.each;
- this.context = args.validationOptions.context;
- }
- }
- }
|