* Extended HTMLElement with React fiber properties
| 104 | * Extended HTMLElement with React fiber properties |
| 105 | */ |
| 106 | interface 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) |
| 118 | const FIBER_TAGS = { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…