UNPKG
@technovilla/x-document
Version:
latest (1.0.13)
1.0.13
Javascript implementation of .NET XDocument
@technovilla/x-document
/
dist
/
x-document.d.ts
10 lines
(9 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
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
; }