import { AbstractControl, FormControl } from '@angular/forms'; export type AbstractControlWithNotFoundType = AbstractControl & { notFoundInvalid: boolean; }; export type FormControlWithNotFoundType = FormControl & { notFoundInvalid: boolean; };