import { Component, Input } from '@angular/core'; import { InfraHostOS } from '@overflow/commons-typescript/model/infra'; @Component({ selector: 'of-infra-host-os', templateUrl: './infra-host-os.component.html', }) export class InfraHostOSComponent { @Input() infraHostOS: InfraHostOS; constructor( ) { } }