Variable validateErrorsMapConst

validateErrorsMap: {
    INVALID_LESS_THAN_MIN_LENGTH: "The entered value is shorter than the required minimum number of characters.";
    INVALID_LESS_THAN_MIN_VALUE: "The entered value is less than the required minimum value.";
} = ...

A map of validation error "tags" to a human readable message. ValidateErrorTypes is derived from the keys of this object. These are the default messages displayed when an input is invalid for the reason to described by the key.

Type declaration

  • Readonly INVALID_LESS_THAN_MIN_LENGTH: "The entered value is shorter than the required minimum number of characters."
  • Readonly INVALID_LESS_THAN_MIN_VALUE: "The entered value is less than the required minimum value."

Generated using TypeDoc