import XNode from "./XNode.js"; class Comment extends XNode { constructor(private nodes: string[]) { super(null, {}, []); } public *recursiveReadable(nest?: string) { nest ??= ""; yield ""; } } export default function HtmlComment({}, ... nodes: string[]) { return new Comment(nodes); }