chore(system): rename BaseNode/BaseEdge types to NodeBase/EdgeBase

This commit is contained in:
moklick
2023-06-13 16:54:26 +02:00
parent 65d1c3bbd4
commit 9dfec49ed5
25 changed files with 499 additions and 550 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ import {
type HandleType,
type Connection,
type PanBy,
type BaseNode,
type NodeBase,
type Transform,
type ConnectingHandle,
type OnConnectEnd,
@@ -25,7 +25,7 @@ export type OnPointerDownParams = {
handleId: string | null;
nodeId: string;
isTarget: boolean;
nodes: BaseNode[];
nodes: NodeBase[];
lib: string;
edgeUpdaterType?: HandleType;
updateConnection: UpdateConnection;