The component:
<test [(ngModel)]="someobject.somevar" someattr="someval"></test>
I would like to know the insides of ngModel but as raw string, in the above case, it would be "someobject.somevar".
But when I print the contents of (self.nativeElement as HtmlElement).attributes, it just prints the someattr attribute.
thanks