I have something like this
get formControls(): any {
return this.form.controls;
}
But now I have a problem with tslint. It returns the error
Type declaration of 'any' loses type-safety. Consider replacing it with a more precise type.
Does anybody knows what type does this.form.controls return? I have tried FormGroup, FormControl, but none was correct.