UNPKG

xml-disassembler

Version:

Disassemble XML files into smaller, more manageable files and reassemble the XML when needed.

3 lines (2 loc) 146 B
import { XmlElement } from "../types/types"; export declare function parseXML(filePath: string): Promise<Record<string, XmlElement> | undefined>;