AsyncValidator
interface
An interface implemented by classes that perform asynchronous validation.
API
Usage Notes
interface AsyncValidator extends Validator {}
validate
Promise<ValidationErrors | null> | Observable<ValidationErrors | null>Method that performs async validation against the provided control.
@returns
Promise<ValidationErrors | null> | Observable<ValidationErrors | null>registerOnValidatorChange
voidRegisters a callback function to call when the validator inputs change.
@paramfn
() => voidThe callback function
@returns
voidJump to details

