( componentOrElement: component(...props: any), )
| 41 | } |
| 42 | |
| 43 | function findDOMNode( |
| 44 | componentOrElement: component(...props: any), |
| 45 | ): null | Element | Text { |
| 46 | return findHostInstance(componentOrElement); |
| 47 | } |
| 48 | |
| 49 | // Expose findDOMNode on internals |
| 50 | Internals.findDOMNode = findDOMNode; |
nothing calls this directly
no test coverage detected