FormControlOptions • Angular

@angular/forms

Interface for options provided to a FormControl.

nonNullable

boolean | undefined

Whether to use the initial value used to construct the FormControl as its default value as well. If this option is false or not provided, the default value of a FormControl is null. When a FormControl is reset without an explicit value, its value reverts to its default value.

initialValueIsDefault

boolean | undefined

@deprecated

Use nonNullable instead.

updateOn

"change" | "blur" | "submit" | undefined

The event name for control to update upon.