XmlNode interface
Represents an XML Node object.
Properties
attributes | A list of attribute values on the node tag. |
child |
The child nodes of the node. |
ns |
The namespace prefix. |
tag |
The name of the node tag. |
value | The value of the node. |
Property Details
attributes
A list of attribute values on the node tag.
attributes?: Record<string, string>
Property Value
Record<string, string>
childNodes
nsPrefix
The namespace prefix.
nsPrefix?: string
Property Value
string
tagName
The name of the node tag.
tagName?: string
Property Value
string
value
The value of the node.
value?: string
Property Value
string