edgeport - v1.0.6
    Preparing search index...

    Interface XmlElement

    A parsed XML element: its (possibly prefixed) tag name, its attributes, and its ordered children (nested elements and text runs).

    1.0.4

    interface XmlElement {
        attrs: Record<string, string>;
        children: XmlNode[];
        name: string;
    }
    Index
    attrs: Record<string, string>

    Attributes as a plain map; values are already entity-decoded.

    children: XmlNode[]

    Child nodes in document order (elements and text).

    name: string

    The tag name exactly as on the wire, including any prefix (e.g. stream:features).