Remove non-needed function

This commit is contained in:
Mark Tolmacs 2025-05-02 14:02:57 +02:00
parent af428d472c
commit 2605c3f962
No known key found for this signature in database

View file

@ -89,12 +89,6 @@ export const isFrameLikeElement = (
);
};
export const isFrameChildElement = (
element: ExcalidrawElement | null,
): element is ExcalidrawElement & { frameId: string } => {
return element !== null && element.frameId !== null;
};
export const isFreeDrawElement = (
element?: ExcalidrawElement | null,
): element is ExcalidrawFreeDrawElement => {