16 lines
320 B
TypeScript
16 lines
320 B
TypeScript
|
import { Component, Input } from '@angular/core';
|
||
|
import { InfraHostIP } from '@overflow/commons-typescript';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'of-host-ips-overlay',
|
||
|
templateUrl: './host-ips-overlay.component.html'
|
||
|
})
|
||
|
export class HostIPsOverlayComponent {
|
||
|
|
||
|
@Input() infraHostIPs: InfraHostIP[];
|
||
|
|
||
|
constructor(
|
||
|
) { }
|
||
|
|
||
|
}
|