UNPKG

html-to-docx-typescript

Version:
5 lines (4 loc) 269 B
/// <reference types="node" /> import { DocumentOptions } from './types'; declare function generateContainer(htmlString: any, headerHTMLString: any, documentOptions: DocumentOptions, footerHTMLString: any): Promise<Buffer | Blob>; export default generateContainer;