I run into a strange behavior in my angular app today.
ERROR in src/main(A,B): error TS2339: Property 'XXX' does not exist on type '{}'.
The error occured at the following line of code
xxx.subscribe(data => {
this.var = data.XXX
});
So basically i subscribe to an observable and map the data from the observable to an global var. My angular App works as intended, so this error seems to have no effect on the app itself, but I still can't figure out whats wrong here. Below is the console log of data
:
console.log(data)
//{"XXX": "test"}