Browse Source

make onElementClick optional

ad1992 3 năm trước cách đây
mục cha
commit
14a23c6c50
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/types.ts

+ 1 - 1
src/types.ts

@@ -263,7 +263,7 @@ export interface ExcalidrawProps {
   ) => void;
   renderCustomElementWidget?: (appState: AppState) => void;
   customElementsConfig?: CustomElementConfig[];
-  onElementClick: (
+  onElementClick?: (
     element: NonDeleted<ExcalidrawElement>,
     event: React.PointerEvent<HTMLCanvasElement>,
   ) => void;