فهرست منبع

feat: Add a `subtype?: string` property to `ExcalidrawElement`.

Daniel J. Geiger 2 سال پیش
والد
کامیت
3dd446dc15
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      src/element/types.ts

+ 1 - 0
src/element/types.ts

@@ -65,6 +65,7 @@ type _ExcalidrawElementBase = Readonly<{
   updated: number;
   link: string | null;
   locked: boolean;
+  subtype?: string;
   customData?: Record<string, any>;
 }>;