21 lines
349 B
TypeScript
21 lines
349 B
TypeScript
import {
|
|
Component, Input,
|
|
} from '@angular/core';
|
|
import { Probe, ProbeHost } from '@overflow/commons-typescript/model/probe';
|
|
|
|
@Component({
|
|
selector: 'of-discovery',
|
|
templateUrl: './discovery.component.html',
|
|
})
|
|
export class DiscoveryComponent {
|
|
|
|
private tabIdx: number;
|
|
@Input() selectedProbe: ProbeHost;
|
|
|
|
constructor(
|
|
) {
|
|
}
|
|
|
|
|
|
}
|