(json: unknown)
| 90 | }; |
| 91 | |
| 92 | export function generateTreeViewNodes(json: unknown): Array<JsonTreeViewNode> { |
| 93 | const info = inferType(json); |
| 94 | const path = new JSONHeroPath("$"); |
| 95 | |
| 96 | return generateChildren(info, path) ?? []; |
| 97 | } |
| 98 | |
| 99 | function generateChildren( |
| 100 | info: JSONValueType, |
no test coverage detected