UNPKG

datainout

Version:

Import and reports data

25 lines (22 loc) 771 B
import { ExcelExporter } from './exporters/Excel.exporter.js'; import { HtmlExporter } from './exporters/Html.exporter.js'; import { PdfExporter } from './exporters/Pdf.exporter.js'; import './PartialDataTransfer.js'; import './SheetMeta.js'; import 'exceljs'; import 'stream'; import '../common/core/ListEvents.js'; import '../common/types/common-type.js'; import '../common/core/Template.js'; import '../common/types/report-template.type.js'; import './exporters/IExporter.js'; import './IPartialDataHandler.js'; declare class Reporter { private templatePath; private exporter; constructor(templatePath: string); createExporterEXCEL(): ExcelExporter; createExportePDF(): PdfExporter; createExporterHTML(): HtmlExporter; } export { Reporter };