MFML - v0.0.4
    Preparing search index...

    Interface AttributeNode

    The node that describes an attribute of element.

    interface AttributeNode {
        childNodes: null | ChildNode[];
        endIndex?: number;
        name: string;
        nodeType: "attribute";
        parentNode: null | ElementNode;
        startIndex?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    childNodes: null | ChildNode[]

    The array of child nodes.

    endIndex?: number

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

    name: string

    The name of the attribute.

    nodeType: "attribute"

    The node type.

    parentNode: null | ElementNode

    The parent node.

    startIndex?: number

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