app/src/commons/component/host-detail.component.ts

23 lines
401 B
TypeScript
Raw Normal View History

2018-09-09 10:20:21 +00:00
import { Component, Input } from '@angular/core';
2018-09-11 10:33:00 +00:00
import { Host, Port } from '@overflow/model/discovery';
2018-09-09 10:20:21 +00:00
@Component({
selector: 'app-host-detail',
templateUrl: './host-detail.component.html',
styleUrls: ['./host-detail.component.scss'],
})
export class HostDetailComponent {
@Input() host: Host;
2018-09-11 10:33:00 +00:00
ports: Port[];
selectedPort: Port;
2018-09-12 02:53:28 +00:00
discoveredBy: string;
2018-09-09 10:20:21 +00:00
constructor(
) {
}
}