API
function minLengthError(
minLength: number,
options: WithFieldTree<ValidationErrorOptions>,
): MinLengthValidationError;
function minLengthError(
minLength: number,
options?: ValidationErrorOptions | undefined,
): WithoutFieldTree<MinLengthValidationError>;function minLengthError(minLength: number, options: WithFieldTree<ValidationErrorOptions>): MinLengthValidationError;Create a minLength error associated with the target field
@paramminLength
numberThe minLength constraint
@returns
MinLengthValidationErrorfunction minLengthError(minLength: number, options?: ValidationErrorOptions | undefined): WithoutFieldTree<MinLengthValidationError>;Create a minLength error
@paramminLength
numberThe minLength constraint
@returns
WithoutFieldTree<MinLengthValidationError>Jump to details