In previous versions of angular we could just define a viewchild with an element ref like so
@ViewChild('fileInput') fileInput: ElementRef;
Now we have to initialize it in the constructor? how do we do this for elementRef if there is no default nativeelement? Element Ref takes in one argument https://angular.io/api/core/ElementRef
constructor() {
this.fileInput = new ElementRef(?);
}