chore(examples): add overview, cleanup

This commit is contained in:
moklick
2021-12-17 10:43:53 +01:00
parent 3b25086149
commit 3206d49c15
10 changed files with 36 additions and 380 deletions
+6 -1
View File
@@ -206,4 +206,9 @@ export type ReactFlowState = ReactFlowStore & ReactFlowActions;
export type UpdateNodeInternals = (nodeId: string) => void;
export type OnSelectionChangeFunc = (params: { nodes: Node[]; edges: Edge[] }) => void;
export type OnSelectionChangeParams = {
nodes: Node[];
edges: Edge[];
};
export type OnSelectionChangeFunc = (params: OnSelectionChangeParams) => void;