I\'m currently following a tutorial and the tutorial is making use of EventEmitter. The code goes like this
EventEmitter
@Output() ratingClicked: EventEmitter<
I was doing the same tutorial and faced the same issue.
It is a problem with an import. EventEmitter must be imported from @angular/core
@angular/core
Use:
import { EventEmitter } from '@angular/core';
This will fix it.