( control: AbstractControl, )
| 733 | * Retrieves the list of raw asynchronous validators attached to a given control. |
| 734 | */ |
| 735 | export function getControlAsyncValidators( |
| 736 | control: AbstractControl, |
| 737 | ): AsyncValidatorFn | AsyncValidatorFn[] | null { |
| 738 | return (control as any)._rawAsyncValidators as AsyncValidatorFn | AsyncValidatorFn[] | null; |
| 739 | } |
| 740 | |
| 741 | /** |
| 742 | * Accepts a singleton validator, an array, or null, and returns an array type with the provided |
no outgoing calls
no test coverage detected
searching dependent graphs…