feat(nested-nodes): change data structure to flat array of nodes

This commit is contained in:
Christopher Möller
2021-10-21 15:39:27 +02:00
parent 64239fbb51
commit 2252ea11ae
8 changed files with 64 additions and 205 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ export interface Node<T = any> {
width?: number | null;
height?: number | null;
handleBounds?: NodeHandleBounds;
childNodes?: Node[];
parentNode?: ElementId;
}
export enum ArrowHeadType {