member_webapp/@overflow/infra/component/old/infra-host-summary.component.ts
2018-06-07 15:07:45 +09:00

28 lines
513 B
TypeScript

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