• Overview
@angular/forms/signals

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

API

function minDate<
  TValue extends Date | null,
  TPathKind extends PathKind = PathKind.Root,
>(
  path: SchemaPath<TValue, 1, TPathKind>,
  minDateValue: Date | LogicFn<TValue, Date | undefined, TPathKind>,
  config?: BaseValidatorConfig<TValue, TPathKind> | undefined,
): void;
Jump to details