Interface ElementNode

interface ElementNode {
    attributes: ParserAttribute[];
    children: Children;
    selfClose: boolean;
    tag: string;
    type: "element";
}

Properties

attributes: ParserAttribute[]
children: Children
selfClose: boolean
tag: string
type: "element"