I am brand new to Angular2 and struggling to grasp the < > syntax :
For instance, in example 1 (found at https://angular.io/docs/ts/latest/guide/dependency-injection.html):
let mockService = <HeroService> {getHeroes: () => expectedHeroes }
Another example can be seen in example 2 (taken from https://angular.io/docs/ts/latest/guide/template-syntax.html)
deleteRequest = new EventEmitter<Hero>();
I would greatly appreciate any assistance or direction towards a more detailed explanation.