Fix cyclical dep

Signed-off-by: Mark Tolmacs <mark@lazycat.hu>
This commit is contained in:
Mark Tolmacs 2025-07-31 08:15:15 +02:00
parent 3702e52454
commit f9a66527ef
No known key found for this signature in database
4 changed files with 4 additions and 2 deletions

View File

@ -27,7 +27,7 @@ import { isCurve } from "@excalidraw/math/curve";
import React from "react";
import type { Curve } from "@excalidraw/math";
import type { DebugElement } from "@excalidraw/utils/visualdebug";
import type { DebugElement } from "@excalidraw/common";
import type {
ElementsMap,
ExcalidrawArrowElement,

View File

@ -10,3 +10,4 @@ export * from "./random";
export * from "./url";
export * from "./utils";
export * from "./emitter";
export * from "./visualdebug";

View File

@ -63,6 +63,8 @@ export const debugDrawLine = (
);
};
export const testDebug = () => {};
export const debugDrawPoint = (
p: GlobalPoint,
opts?: {

View File

@ -2,4 +2,3 @@ export * from "./export";
export * from "./withinBounds";
export * from "./bbox";
export { getCommonBounds } from "@excalidraw/element";
export * from "./visualdebug";