UNPKG

@technovilla/x-document

Version:

Javascript implementation of .NET XDocument

10 lines (9 loc) 292 B
import { XElement } from './x-element'; export declare class XDocument { private doc; private select; protected constructor(doc: Document); static parse(xml: string): XDocument; xpathSelectElement(expression: string): XElement; toString(prettify?: boolean): string; }