UNPKG

datainout

Version:

Import and reports data

13 lines (10 loc) 371 B
import { IExporter } from './IExporter.cjs'; declare class PdfExporter implements IExporter { private templatePath; constructor(templatePath: string); write(reportPath: string, data: any, opts?: any): Promise<void>; toBuffer(data: any, opts?: any): Promise<Buffer>; private genTemplate; streamTo(...args: any[]): void; } export { PdfExporter };