reports-hyper74
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.2.0.
15 lines (14 loc) • 694 B
TypeScript
import { Observable } from "rxjs";
import { HttpClient } from "@angular/common/http";
import * as i0 from "@angular/core";
export declare class ReportsService {
private httpClient;
constructor(httpClient: HttpClient);
loadGroups(url: string): Observable<any>;
listReportsByGroupId(url: string, groupId: number): Observable<any>;
getReportWithFilters(url: string, reportId: number): Observable<any>;
executeReport(url: string, query: any): Observable<any>;
exportAsExcelFile(json: any[], excelFileName: string): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ReportsService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<ReportsService>;
}