sample.html
<span id='char'>{{value}}</span>
sample.ts
console.log((<HTMLInputElement>document.getElementById('char')))
This code snippet will display
<span id='char'>ThisIsTheValueupdated</span>
In this example, I am trying to retrieve the value ThisIsTheValueupdated
.