An error used to indicate that a value is higher than the maximum allowed.
API
class MaxValidationError extends BaseNgValidationError {
constructor(max: number, options?: ValidationErrorOptions | undefined): MaxValidationError;
readonly kind: "max";
readonly override fieldTree: FieldTree<unknown>;
readonly override message?: string | undefined;
}
constructor
MaxValidationErrorkind
"max"fieldTree
FieldTree<unknown>The field associated with this error.
message
string | undefinedHuman readable error message.