// #docregion export const heroDetail = { bindings: { hero: '=', deleted: '&' }, template: `

{{$ctrl.hero.name}} details!

{{$ctrl.hero.id}}
`, controller: function() { this.onDelete = () => { this.deleted(this.hero); }; } };