UNPKG

docx-templates

Version:
9 lines (8 loc) 299 B
/// <reference types="node" /> import { Node } from './types'; declare const parseXml: (templateXml: string) => Promise<Node>; type XmlOptions = { literalXmlDelimiter: string; }; declare function buildXml(node: Node, options: XmlOptions, indent?: string): Buffer; export { parseXml, buildXml };