MFML - v0.0.4
    Preparing search index...

    Interface ElementNode

    The node that describes an element.

    interface ElementNode {
        attributeNodes: null | AttributeNode[];
        childNodes: null | ChildNode[];
        endIndex?: number;
        nodeType: "element";
        parentNode: null | ParentNode;
        startIndex?: number;
        tagName: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    attributeNodes: null | AttributeNode[]

    The array of attributes nodes.

    childNodes: null | ChildNode[]

    The array of child nodes.

    endIndex?: number

    The index at which a node value ends (exclusive).

    nodeType: "element"

    The node type.

    parentNode: null | ParentNode

    The parent node.

    startIndex?: number

    The index at which a node value starts (inclusive).

    tagName: string

    The name of the element tag.