@iocium/domhash
    Preparing search index...

    Interface StructureNode

    Represents a node in the structure of a DOM element.

    interface StructureNode {
        attributes: string[];
        children: StructureNode[];
        tag: string;
    }
    Index

    Properties

    attributes: string[]

    An array of attribute names associated with the node.

    children: StructureNode[]

    An array of child nodes that are also StructureNode instances.

    tag: string

    The HTML tag name of the node.