import { Component } from '@angular/core'; // #docregion export class HeroHostComponent { constructor() { this.active = false; this.clicks = 0; this.headingClass = true; this.title = 'Hero Host Tooltip'; } clicked() { this.clicks += 1; } enter(event) { this.active = true; this.headingClass = false; } leave(event) { this.active = false; this.headingClass = true; } } // #docregion metadata HeroHostComponent.annotations = [ new Component({ selector: 'hero-host', template: `