xml2o
Version:
Helps you convert XML into an object for easy reading.
7 lines (6 loc) • 299 B
TypeScript
/// <reference types="node" />
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 };