member_webapp/@overflow/infra/component/host-summary/host-summary.component.ts

28 lines
496 B
TypeScript
Raw Normal View History

import { Component, OnInit, AfterContentInit, Input, OnChanges } from '@angular/core';
2018-05-02 07:23:35 +00:00
import { InfraHost } from '@overflow/commons-typescript/model/infra';
@Component({
selector: 'of-host-summary',
templateUrl: './host-summary.component.html',
})
export class HostSummaryComponent implements OnInit, AfterContentInit, OnChanges {
@Input() host: InfraHost;
@Input() visible: boolean;
constructor(
) { }
ngOnInit() {
}
ngAfterContentInit() {
}
ngOnChanges() {
}
}