This commit is contained in:
Xu Desheng 2025-04-07 07:58:48 +09:00 committed by GitHub
commit 53e89bd266
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 1853 additions and 2063 deletions

View file

@ -412,3 +412,6 @@ export type NonDeletedSceneElementsMap = Map<
export type ElementsMapOrArray =
| readonly ExcalidrawElement[]
| Readonly<ElementsMap>;
/** Supported shape types for shape conversion */
export type ShapeType = "rectangle" | "diamond" | "ellipse";