menu
menuAPI
Interface for options provided to an AbstractControl.
interface AbstractControlOptions { validators?: ValidatorFn | ValidatorFn[] | null | undefined; asyncValidators?: AsyncValidatorFn | AsyncValidatorFn[] | null | undefined; updateOn?: "change" | "blur" | "submit" | undefined;}
ValidatorFn | ValidatorFn[] | null | undefinedThe list of validators applied to a control.
AsyncValidatorFn | AsyncValidatorFn[] | null | undefinedThe list of async validators applied to control.
"change" | "blur" | "submit" | undefinedThe event name for control to update upon.