* Returns the root node containing this node. This is either: * 1. The `Document` containing the node, if attached in light DOM. * 2. The `ShadowRoot` containing the node, if attached in shadow DOM. * 3. The root node of a detached tree. * * @see https://developer.mozilla.org/en-US/do
(options?: {composed?: boolean})
| 62 | * @see https://developer.mozilla.org/en-US/docs/Web/API/Node/getRootNode |
| 63 | */ |
| 64 | getRootNode?(options?: {composed?: boolean}): RNode; |
| 65 | } |
| 66 | |
| 67 | /** |
no outgoing calls
no test coverage detected