member_webapp/src/packages/target/component/detail/detail.component.ts

29 lines
530 B
TypeScript
Raw Normal View History

2018-04-16 08:28:39 +00:00
import { Component, ViewChild, OnInit, Input, AfterContentInit } from '@angular/core';
import { Router } from '@angular/router';
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
import { Sensor } from 'packages/sensor/model';
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
@Component({
selector: 'of-target-detail',
templateUrl: './detail.component.html',
})
export class DetailComponent implements OnInit, AfterContentInit {
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
constructor(private router: Router) { }
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
ngOnInit() {
}
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
ngAfterContentInit() {
}
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
handleSensorClick(sensor: Sensor) {
}
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
handleCheckAlive() {
}
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
handleTraceroute() {
}
}