* @description * Validator that requires the number of items in the control's value to be less than or equal * to the provided maximum length. This validator is also provided by default if you use * the HTML5 `maxlength` attribute. Note that the `maxLength` validator is intended to be used
(maxLength: number)
| 363 | * |
| 364 | */ |
| 365 | static maxLength(maxLength: number): ValidatorFn { |
| 366 | return maxLengthValidator(maxLength); |
| 367 | } |
| 368 | |
| 369 | /** |
| 370 | * @description |
no test coverage detected