fix(uncontrolled-flow): keep internals

This commit is contained in:
moklick
2022-05-28 22:05:08 +02:00
parent dd51bed6ee
commit 403bf71aeb
3 changed files with 3 additions and 3 deletions
+1 -2
View File
@@ -1,12 +1,11 @@
import { XYPosition, Dimensions } from './utils';
import { NodeHandleBounds, Node } from './nodes';
import { Node } from './nodes';
import { Edge } from './edges';
export type NodeDimensionChange = {
id: string;
type: 'dimensions';
dimensions: Dimensions;
handleBounds?: NodeHandleBounds;
};
export type NodePositionChange = {