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