I do have following piece of (pseudo-) code
<some-component #someComponent/>
<another-component [reference]="someComponent" />
@Component(...)
export class AnotherComponent {
@Input() reference // <--- type
}
My question now is: What is the type of the Input reference? I did not find anything in the docs. It is (as far as I can say) not an ElementRef. I do then want to access the nativeElement of the passed reference.