Element node.

interface Element {
    attributes?: ElementAttributes;
    children?: ElementChildren;
    name: string;
    namespace?: string | URL;
    type: "element";
}

Hierarchy (view full)

Properties

attributes?: ElementAttributes
children?: ElementChildren
name: string
namespace?: string | URL
type: "element"