Exemple avec ValidatorFn
.
export declare interface ValidatorFn { (control: AbstractControl): ValidationErrors | null; }
validNumber(): ValidatorFn { return (control: AbstractControl): ValidationErrors | null => { return ...; }; }
The best way to implement custom validators Archive du 03/09/2020 le 24/09/2021