UNPKG

datainout

Version:

Import and reports data

12 lines (9 loc) 324 B
import { IExporter } from './IExporter.cjs'; 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 };