UNPKG

datainout

Version:

Import and reports data

12 lines (9 loc) 323 B
import { IExporter } from './IExporter.js'; declare class HtmlExporter implements IExporter { private templatePath; constructor(templatePath: string); write(reportPath: string, data: any): Promise<void>; toBuffer(data: any): Promise<Buffer>; streamTo(...args: any[]): void; } export { HtmlExporter };