interface XMLNode {
    attrs: Record<string, string>;
    children: XMLChild[];
    orderedattrs: XMLTagAttribute[];
    tag: string;
}

Properties

attrs: Record<string, string>
children: XMLChild[]
orderedattrs: XMLTagAttribute[]
tag: string