import { Component, Input, Output, EventEmitter } from '@angular/core'; import { InfraHostIP } from '@overflow/commons-typescript'; @Component({ selector: 'of-infra-host-ips', templateUrl: './infra-host-ips.component.html', }) export class InfraHostIPsComponent { @Input() infraHostIPs: InfraHostIP[]; @Output() select = new EventEmitter(); constructor( ) { } }