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
/
XProcessingInstruction.d.ts
12 lines
(11 loc)
•
272 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** *
@author
Thomas Barnekow *
@license
MIT */
import { XNode }
from
'./internal.js'
; export
declare
class
XProcessingInstruction
extends
XNode
{ target:
string
; data:
string
;
constructor
(
target
:
string
,
data
:
string
);
toString
():
string
; }