UNPKG
html-dom-parser
Version:
latest (5.1.1)
5.1.1
5.1.0
5.0.13
5.0.12
5.0.11
5.0.10
5.0.9
5.0.8
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.0.1
4.0.0
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
2.0.0
1.2.0
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.5.0
0.4.0
0.3.1
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.3
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
HTML to DOM parser.
github.com/remarkablemark/html-dom-parser
remarkablemark/html-dom-parser
html-dom-parser
/
src
/
types.ts
6 lines
(3 loc)
•
218 B
text/typescript
View Raw
1
2
3
4
5
6
import
type
{
Comment
,
Element
,
ProcessingInstruction
,
Text
}
from
'domhandler'
;
export
type
{
Comment
,
Element
,
ProcessingInstruction
,
Text
};
export
type
DOMNode
=
Comment
|
Element
|
ProcessingInstruction
|
Text
;