docs(forms): update API reference for validator directives (#26926)
PR Close #26926
This commit is contained in:
committed by
Miško Hevery
parent
87d7b747d2
commit
a433baf99a
@@ -97,14 +97,17 @@ export type FormHooks = 'change' | 'blur' | 'submit';
|
||||
*/
|
||||
export interface AbstractControlOptions {
|
||||
/**
|
||||
* List of validators applied to control.
|
||||
* @description
|
||||
* The list of validators applied to a control.
|
||||
*/
|
||||
validators?: ValidatorFn|ValidatorFn[]|null;
|
||||
/**
|
||||
* List of async validators applied to control.
|
||||
* @description
|
||||
* The list of async validators applied to control.
|
||||
*/
|
||||
asyncValidators?: AsyncValidatorFn|AsyncValidatorFn[]|null;
|
||||
/**
|
||||
* @description
|
||||
* The event name for control to update upon.
|
||||
*/
|
||||
updateOn?: 'change'|'blur'|'submit';
|
||||
|
||||
Reference in New Issue
Block a user