I need to check in the component (not in the template) if a control generated by formBuilder is valid. I tried:
if(this.miSpecialForm.controls.miName.dirty){
console.log('Hi mom!');
}
but I get the error:
Property 'miName' does not exist on type '{ [key: string]: AbstractControl; }'
this.miSpecialForm.get('miName').valid