(control: AbstractControl)
| 726 | * Retrieves the list of raw synchronous validators attached to a given control. |
| 727 | */ |
| 728 | export function getControlValidators(control: AbstractControl): ValidatorFn | ValidatorFn[] | null { |
| 729 | return (control as any)._rawValidators as ValidatorFn | ValidatorFn[] | null; |
| 730 | } |
| 731 | |
| 732 | /** |
| 733 | * Retrieves the list of raw asynchronous validators attached to a given control. |
no outgoing calls
no test coverage detected
searching dependent graphs…