I have in my component an EventEmitter but I can\'t compile it because it return the error: Supplied parameters do not match any signature of call target<
EventEmitter
Supplied parameters do not match any signature of call target<
I fixed it by making
EventEmitter();
Then I was able to pass an object such as:
this.MyOutputVariable.emit({ name: 'jack', age: '12' });
And it worked.