member_webapp/@overflow/infra/component/infra-host-ips.component.ts
2018-06-14 15:45:39 +09:00

19 lines
394 B
TypeScript

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<InfraHostIP>();
constructor(
) {
}
}