in app/BookInfo.ts [62:71]
setPrice() {
const tmpPrice: any = document
.getElementById('buyNewSection')
.getElementsByClassName('offer-price')[0];
this.price = tmpPrice.innerText;
if (typeof this.price !== 'string') {
this.price = tmpPrice.innerHTML;
console.log();
}
}