* @description * Validator that requires the control's value to be greater than or equal to the provided number. * * @usageNotes * * ### Validate against a minimum of 3 * * ```ts * const control = new FormControl(2, Validators.min(3)); * * console.log(control.errors); /
(min: number)
| 183 | * |
| 184 | */ |
| 185 | static min(min: number): ValidatorFn { |
| 186 | return minValidator(min); |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * @description |
no test coverage detected