How can I access the child elements (here: ) of @ViewChild() in Angular 2+ without explicit declaration?
@ViewChild()
In template.htm
HTML
TS
@ViewChild('parent',{static:false}) parentDiv:ElementRef this.parentDiv.nativeElement.firstChild
You can check this out if you want do any operations in it renderer2