stimulsoft-viewer-angular
Version:
The Viewer component is designed to view reports and dashboards in the web browser.
23 lines (22 loc) • 1.11 kB
TypeScript
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { ModelService } from './model.service';
import { HelperService } from './helper.service';
import { FileSaverService } from './file.saver.service';
import * as i0 from "@angular/core";
export declare class StiHttpClientService {
private httpClient;
model: ModelService;
private helper;
private fileSaver;
constructor(httpClient: HttpClient, model: ModelService, helper: HelperService, fileSaver: FileSaverService);
post(url: string, data: any, responseType?: string): Observable<any>;
private getFormData;
private getParams;
getData(url: any, data: any): Observable<any>;
postForm(url: string, data: any, doc: any, postOnlyData?: boolean, retrieveFileName?: boolean): void;
showData(url: string, params: any, doc: any, fileName: string): void;
postForm2(url: string, data: any, doc: any, postOnlyData?: boolean): void;
static ɵfac: i0.ɵɵFactoryDeclaration<StiHttpClientService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<StiHttpClientService>;
}