chore(types): cleanup

This commit is contained in:
moklick
2022-05-26 19:56:41 +02:00
parent 27b5de2d96
commit 732d92d10b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -26,9 +26,9 @@ export interface Node<T = any> {
zIndex?: number;
extent?: 'parent' | CoordinateExtent;
expandParent?: boolean;
positionAbsolute?: XYPosition;
// only used internally
positionAbsolute?: XYPosition;
[zSymbol]?: number;
[handleBoundsSymbol]?: NodeHandleBounds;
[isParentSymbol]?: boolean;
+1 -1
View File
@@ -41,6 +41,6 @@ export const getBoundsofRects = (rect1: Rect, rect2: Rect): Rect =>
export const isNumeric = (n: any): n is number => !isNaN(n) && isFinite(n);
export const handleBoundsSymbol = Symbol('handleBound');
export const handleBoundsSymbol = Symbol('handleBounds');
export const zSymbol = Symbol('z');
export const isParentSymbol = Symbol('isParent');