UNPKG

xml2o

Version:

Helps you convert XML into an object for easy reading.

6 lines (5 loc) 268 B
import { Node, Attribute } from "./node"; import ReadableStream = NodeJS.ReadableStream; export declare function convertStream(stream: ReadableStream): Promise<Node>; export declare function convertString(XMLString: string): Promise<Node>; export { Node, Attribute };