import { Component, OnInit } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { ActivatedRoute, Router } from '@angular/router'; @Component({ selector: 'app-root', templateUrl: './report.component.html', styleUrls: ['./report.component.css'] }) export class ReportComponent implements OnInit{ finalGETObj : {}; finalGETObjRowsArr : [][]; rowArr : {}[]; reportIdArr : string[]; toggle : boolean; constructor(private _http : HttpClient, private _router : Router) { this.finalGETObj = new Object(); this.finalGETObjRowsArr = new Array(); this.rowArr = new Array(); this.reportIdArr = new Array(); this.toggle = false; } ngOnInit(): void { } title = 'TitleProject'; }