Interface for options provided to an AbstractControl.
AbstractControl
interface AbstractControlOptions { validators?: ValidatorFn | ValidatorFn[] | null | undefined; asyncValidators?: AsyncValidatorFn | AsyncValidatorFn[] | null | undefined; updateOn?: "change" | "blur" | "submit" | undefined;}