app/src/commons/component/host-detail.component.ts
2018-09-11 19:33:00 +09:00

23 lines
378 B
TypeScript

import { Component, Input } from '@angular/core';
import { Host, Port } from '@overflow/model/discovery';
@Component({
selector: 'app-host-detail',
templateUrl: './host-detail.component.html',
styleUrls: ['./host-detail.component.scss'],
})
export class HostDetailComponent {
@Input() host: Host;
ports: Port[];
selectedPort: Port;
constructor(
) {
}
}