ngx-gem-spaas
Version:
This library contains services, components, images and styles to provide a unified look and way-of-working throughout GEM SPaaS.
18 lines (17 loc) • 956 B
TypeScript
import { BaseComponent, SettingsService } from "ngx-gem-spaas";
import { ExcelService } from "../_services/excel.service";
import { ExcelSheetModel } from "../_models/excel.model";
import * as i0 from "@angular/core";
export declare class ExcelExportComponent extends BaseComponent {
private excelExportService;
private settingsService;
tooltipMsg: string;
fileName: string;
sheets: ExcelSheetModel[];
private settings;
constructor(excelExportService: ExcelService, settingsService: SettingsService);
private getSettings;
onExport(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ExcelExportComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ExcelExportComponent, "spaas-excel-export", never, { "tooltipMsg": { "alias": "tooltipMsg"; "required": false; }; "fileName": { "alias": "fileName"; "required": true; }; "sheets": { "alias": "sheets"; "required": true; }; }, {}, never, never, false, never>;
}