UNPKG

html-dom-parser

Version:
6 lines (3 loc) 218 B
import type { Comment, Element, ProcessingInstruction, Text } from 'domhandler'; export type { Comment, Element, ProcessingInstruction, Text }; export type DOMNode = Comment | Element | ProcessingInstruction | Text;