style: reorder imports

This commit is contained in:
John Doe
2026-03-26 00:24:45 -04:00
parent b47d4a6a15
commit 9a0950dd90
2 changed files with 3 additions and 5 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import type { AnyNode, AnyNodeId } from '../schema'
import type { Collection, CollectionId } from '../schema/collections'
import { generateId } from '../schema/base'
import type { Collection, CollectionId } from '../schema/collections'
export type SceneGraph = {
nodes: Record<AnyNodeId, AnyNode>
@@ -138,4 +138,4 @@ export function cloneSceneGraph(sceneGraph: SceneGraph): SceneGraph {
rootNodeIds: clonedRootNodeIds,
...(clonedCollections && { collections: clonedCollections }),
}
}
}