| 26 | export type PascalNode = AnyNode |
| 27 | |
| 28 | export interface PascalSceneGraph { |
| 29 | nodes: Record<AnyNodeId, AnyNode> |
| 30 | rootNodeIds: AnyNodeId[] |
| 31 | collections?: Record<string, unknown> |
| 32 | } |
| 33 | |
| 34 | // Pascal's BaseNode.metadata is typed as `JSONType` (z.json()) — a loose |
| 35 | // JSON value. The converter writes a fixed shape; this typed accessor |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…