Posts by Davi Roberto • 1 point
1 post
-
0
votes2
answers208
viewsA: Context 'this' of Eventemitter<string> is not attributable to the 'this' method of type Observable<string>
In your service you must have something like this: notifier = new EventEmitter<string>(); Another solution may be you change from string for any, because "in that scenario", it makes sense.…