* @description * Validator that requires the number of items in the control's value to be greater than or equal * to the provided minimum length. This validator is also provided by default if you use * the HTML5 `minlength` attribute. Note that the `minLength` validator is intended to be us
(minLength: number)
| 331 | * |
| 332 | */ |
| 333 | static minLength(minLength: number): ValidatorFn { |
| 334 | return minLengthValidator(minLength); |
| 335 | } |
| 336 | |
| 337 | /** |
| 338 | * @description |
no test coverage detected