16 lines
317 B
TypeScript
16 lines
317 B
TypeScript
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() {
|
|
}
|
|
}
|
|
|