import { Component, Input, Output, EventEmitter } from "@angular/core"; @Component({ template: '

Test

', styles: ['h1 { font-weight: normal; }'] }) export default class SampleComponent { count: number = 1; @Input() disabled: boolean = false; }