init project

This commit is contained in:
NAS\NASPC
2026-05-26 14:40:48 +07:00
parent 75a146669b
commit 6bdc2aa18f
1523 changed files with 210234 additions and 60 deletions
+6
View File
@@ -0,0 +1,6 @@
import { type TreeAdapterTypeMap, type TreeAdapter } from 'parse5';
import { type AnyNode, type ParentNode, type ChildNode, Element, Document, ProcessingInstruction, Comment, Text } from 'domhandler';
export type Htmlparser2TreeAdapterMap = TreeAdapterTypeMap<AnyNode, ParentNode, ChildNode, Document, Document, Element, Comment, Text, Element, ProcessingInstruction>;
/** @internal */
export declare function serializeDoctypeContent(name: string, publicId: string, systemId: string): string;
export declare const adapter: TreeAdapter<Htmlparser2TreeAdapterMap>;