member_webapp/@overflow/infra/component/host-summary/host-summary.component.ts
crusader d59d9379f9 ing
2018-05-24 15:44:13 +09:00

28 lines
496 B
TypeScript

import { Component, OnInit, AfterContentInit, Input, OnChanges } from '@angular/core';
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() {
}
}