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

30 lines
616 B
TypeScript

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