Type Alias XmlNodeBeta

XmlNode: {
    attributes: Record<string, string>;
    childNodes: XmlNode[];
    nodeName: string;
    nodeValue: string | null;
}

XML node

Type declaration

  • attributes: Record<string, string>
  • childNodes: XmlNode[]
  • nodeName: string
  • nodeValue: string | null