Type Alias XmlNodeBeta

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

XML node

Type declaration

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