interface IHtmlNode {
    children?: IHtmlNode[];
    childrenLevel: Levels;
    comments?: string[];
    data?: Record<string, unknown>;
    html: string;
    id: number;
    level: Levels;
    parent: number;
    tag: string;
}

Properties

children?: IHtmlNode[]
childrenLevel: Levels
comments?: string[]
data?: Record<string, unknown>
html: string
id: number
level: Levels
parent: number
tag: string

Generated using TypeDoc