member_webapp/@overflow/probe/component/summary/summary.component.ts

16 lines
317 B
TypeScript
Raw Normal View History

2018-05-30 09:39:26 +00:00
import { Component, Input } from '@angular/core';
import { Probe, ProbeHost } from '@overflow/commons-typescript/model/probe';
@Component({
selector: 'of-probe-summary',
templateUrl: './summary.component.html',
})
export class ProbeSummaryComponent {
@Input() probeHost: ProbeHost;
constructor() {
}
}