* @description * Compose multiple async validators into a single function that returns the union * of the individual error objects for the provided control. * * @returns A validator function that returns an error map with the * merged error objects of the async validators if the valid
(validators: (AsyncValidatorFn | null)[])
| 459 | * |
| 460 | */ |
| 461 | static composeAsync(validators: (AsyncValidatorFn | null)[]): AsyncValidatorFn | null { |
| 462 | return composeAsync(validators); |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | /** |
no test coverage detected