member_webapp/@overflow/shared/ui/component/host-ips-overlay.component.ts

16 lines
320 B
TypeScript
Raw Normal View History

2018-06-15 03:56:54 +00:00
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(
) { }
}