| 208 | | string; |
| 209 | |
| 210 | export interface ProcessedJSXNode { |
| 211 | $type$: ProcessedJSXNodeType; |
| 212 | $id$: string; |
| 213 | $props$: Record<string, any>; |
| 214 | $immutableProps$: Record<string, any> | null; |
| 215 | $flags$: number; |
| 216 | $children$: ProcessedJSXNode[]; |
| 217 | $key$: string | null; |
| 218 | $elm$: Node | VirtualElement | null; |
| 219 | $text$: string; |
| 220 | $signal$: Signal<any> | null; |
| 221 | $dev$?: DevJSX; |
| 222 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…