| 3 | |
| 4 | type NestedAst = Nested1 | Nested2 | Nested3; |
| 5 | interface Nested1 { |
| 6 | kind: "1"; |
| 7 | item2: Nested2; |
| 8 | list2: Nested2[]; |
| 9 | list4?: Nested2[]; |
| 10 | } |
| 11 | interface Nested2 { |
| 12 | kind: "2"; |
| 13 | item3: Nested3; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…