refactor(core): remove exports from barrel files

This commit is contained in:
braks
2024-02-05 07:51:12 +01:00
committed by Braks
parent 259514a229
commit 308338fa79
8 changed files with 45 additions and 42 deletions
+3
View File
@@ -203,9 +203,12 @@ export function applyChanges<
return elements
}
/** @deprecated Use store instance and call `applyChanges` with template-ref or the one received by `onPaneReady` instead */
export function applyEdgeChanges(changes: EdgeChange[], edges: GraphEdge[]) {
return applyChanges(changes, edges)
}
/** @deprecated Use store instance and call `applyChanges` with template-ref or the one received by `onPaneReady` instead */
export function applyNodeChanges(changes: NodeChange[], nodes: GraphNode[]) {
return applyChanges(changes, nodes)
}