1 import { Component } from '@angular/core';
2 import { ActivatedRoute } from '@angular/router';
5 selector: 'cd-performance-counter',
6 templateUrl: './performance-counter.component.html',
7 styleUrls: ['./performance-counter.component.scss']
9 export class PerformanceCounterComponent {
13 constructor(private route: ActivatedRoute) {
14 this.route.params.subscribe(
15 (params: { type: string; id: string }) => {
16 this.serviceId = params.id;
17 this.serviceType = params.type;