Type Alias HtmlElement

HtmlElement: {
    attrs?: Record<string, string | boolean>;
    content?: string | HtmlElement | (string | HtmlElement)[];
    tag: string;
}