The Wayback Machine - https://web.archive.org/web/20260303104513/https://angular.dev/api/forms/AsyncValidatorFn
    • Overview
@angular/forms

AsyncValidatorFn

interface
stable

A function that receives a control and returns a Promise or observable that emits validation errors if present, otherwise null.

API

    
      interface AsyncValidatorFn {  (control: AbstractControl<any, any, any>): Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;}
    
    

Promise<ValidationErrors | null> | Observable<ValidationErrors | null>
@paramcontrolAbstractControl<any, any, any>
@returnsPromise<ValidationErrors | null> | Observable<ValidationErrors | null>
Jump to details
HTTPS · web.archive.org
← Home