UNPKG
@openxmldev/linq-to-xml
Version:
latest (0.10.0)
0.10.0
0.9.1
0.9.0
0.8.1
0.8.0
LINQ to XML for TypeScript
github.com/OpenXmlDev/linq-to-xml
OpenXmlDev/linq-to-xml
@openxmldev/linq-to-xml
/
src
/
XText.d.ts
15 lines
(14 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** *
@author
Thomas Barnekow *
@license
MIT
*/
import
{
XNode
}
from
'./internal.js'
;
/** * Represents a text node. */
export
declare
class
XText
extends
XNode
{
constructor
(
value
:
string
);
get
value
():
string
;
set
value
(
text
:
string
);
toString
():
string
; }