You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
606 B
7 lines
606 B
import { type TreeAdapterTypeMap, type TreeAdapter } from 'parse5'; |
|
import { type AnyNode, type ParentNode, type ChildNode, Element, Document, ProcessingInstruction, Comment, Text } from 'domhandler'; |
|
export declare 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>; |
|
//# sourceMappingURL=index.d.ts.map
|