| 1 | import * as ESTree from 'estree'; |
| 2 | |
| 3 | interface NodeWithParent extends ESTree.BaseNode { |
| 4 | parent: NodeWithParent; |
| 5 | type: NodeType; |
| 6 | } |
| 7 | |
| 8 | interface JSXExpressionContainer extends NodeWithParent { |
| 9 | type: 'JSXExpressionContainer'; |
nothing calls this directly
no outgoing calls
no test coverage detected