API
function maxLengthError(
maxLength: number,
options: WithFieldTree<ValidationErrorOptions>,
): MaxLengthValidationError;
function maxLengthError(
maxLength: number,
options?: ValidationErrorOptions | undefined,
): WithoutFieldTree<MaxLengthValidationError>;function maxLengthError(maxLength: number, options: WithFieldTree<ValidationErrorOptions>): MaxLengthValidationError;Create a maxLength error associated with the target field
@parammaxLength
numberThe maxLength constraint
@returns
MaxLengthValidationErrorfunction maxLengthError(maxLength: number, options?: ValidationErrorOptions | undefined): WithoutFieldTree<MaxLengthValidationError>;Create a maxLength error
@parammaxLength
numberThe maxLength constraint
@returns
WithoutFieldTree<MaxLengthValidationError>Jump to details