• Overview
@angular/forms/signals

min

function

Binds a validator to the given path that requires the value to be greater than or equal to the given minValue. This function can only be called on number paths. In addition to binding a validator, this function adds MIN property to the field.

API

function min<TPathKind extends PathKind = PathKind.Root>(
  path: { [ɵɵTYPE]: [number, TPathKind] },
  minValue: number | LogicFn<number, number | undefined, TPathKind>,
  config?: BaseValidatorConfig<number, TPathKind> | undefined,
): void;

min

void

Binds a validator to the given path that requires the value to be greater than or equal to the given minValue. This function can only be called on number paths. In addition to binding a validator, this function adds MIN property to the field.

@parampath{ [ɵɵTYPE]: [number, TPathKind]; }

Path of the field to validate

@paramminValuenumber | LogicFn<number, number | undefined, TPathKind>

The minimum value, or a LogicFn that returns the minimum value.

@paramconfigBaseValidatorConfig<number, TPathKind> | undefined

Optional, allows providing any of the following options:

@returnsvoid
Jump to details