MCPcopy Create free account
hub / github.com/benjitaylor/agentation / ReactDOMElement

Interface ReactDOMElement

package/src/utils/source-location.ts:106–115  ·  view source on GitHub ↗

* Extended HTMLElement with React fiber properties

Source from the content-addressed store, hash-verified

104 * Extended HTMLElement with React fiber properties
105 */
106interface ReactDOMElement extends HTMLElement {
107 // React 16-17 fiber key
108 __reactFiber$?: string;
109 // React 18+ fiber key pattern
110 __reactFiber?: ReactFiber;
111 // React internal instance (older pattern)
112 __reactInternalInstance$?: string;
113 // Alternative patterns
114 _reactRootContainer?: unknown;
115}
116
117// React fiber tag constants (for reference)
118const FIBER_TAGS = {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…