| 6 | | (TagNode<any> & Partial<Record<keyof TextNode, never>>) |
| 7 | |
| 8 | export interface TextNode { |
| 9 | type: 'text' |
| 10 | value: string |
| 11 | } |
| 12 | |
| 13 | export interface TagNode<T extends React.ElementType> { |
| 14 | tagName: T |
nothing calls this directly
no outgoing calls
no test coverage detected