23 lines
378 B
TypeScript
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(
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
}
|