9 lines
299 B
TypeScript
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 };
|