Fixing common package

This commit is contained in:
Marcel Mraz 2025-03-17 13:57:03 +01:00
parent aa873234ad
commit 44d8a6b4fe
No known key found for this signature in database
GPG key ID: 4EBD6E62DC830CD2
22 changed files with 182 additions and 88 deletions

View file

@ -1,8 +1,9 @@
import type { Bounds } from "@excalidraw/element/bounds";
import { isPoint, pointDistance, pointFrom } from "./point";
import { rectangle, rectangleIntersectLineSegment } from "./rectangle";
import type { Curve, GlobalPoint, LineSegment, LocalPoint } from "./types";
import type { Bounds } from "../excalidraw/element/bounds";
/**
*

View file

@ -1,4 +1,4 @@
import { toBrandedType } from "@excalidraw/excalidraw/utils";
import { toBrandedType } from "@excalidraw/common/utils";
import type { InclusiveRange } from "./types";