| Interface | Description |
|---|---|
| Document |
The Document interface represent any web page loaded in the browser and serves as an entry point into the
web page's content, the ReactDOM tree including elements such as <body> or <table>, and provides
functionality which is global to the document (such as obtaining the page's URL and creating new elements
in the document).
|
| DomTokenList | |
| Element | |
| Node |
A Node is an interface from which a number of ReactDOM types inherit, and allows these various types to be
treated (or tested) similarly.
|
| NodeList |
NodeList objects are collections of nodes such as those returned by Node.childNodes and the
document.querySelectorAll method.
|
| NodeSelector |
| Class | Description |
|---|---|
| Document.DocumentUtil |