Not sure if this is a bug or not. I have a Component called PickList and if I don't type the EventEmitter it, I get this error:
Cannot resolve all parameters for PickList -> Failed to compile MyAppComponent
// works
constructor(@EventEmitter('changed') changer:Function){/*..*/}
// Breaks and shows the error:
constructor(@EventEmitter('changed') changer){/*..*/}
Not sure if this is a bug or not. I have a Component called PickList and if I don't type the EventEmitter it, I get this error:
Cannot resolve all parameters for PickList -> Failed to compile MyAppComponent