2025-10-01 19:55:38 +02:00

9 lines
299 B
TypeScript

/// <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 };