@zsviczian/excalidraw 0.17.1-obsidian-28 → 0.17.1-obsidian-29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zsviczian/excalidraw",
3
- "version": "0.17.1-obsidian-28",
3
+ "version": "0.17.1-obsidian-29",
4
4
  "main": "main.js",
5
5
  "types": "types/excalidraw/index.d.ts",
6
6
  "files": [
@@ -17,7 +17,7 @@ export declare const isArrowElement: (element?: ExcalidrawElement | null) => ele
17
17
  export declare const isLinearElementType: (elementType: ElementOrToolType) => boolean;
18
18
  export declare const isBindingElement: (element?: ExcalidrawElement | null, includeLocked?: boolean) => element is ExcalidrawLinearElement;
19
19
  export declare const isBindingElementType: (elementType: ElementOrToolType) => boolean;
20
- export declare const isBindableElement: (element: ExcalidrawElement | null, includeLocked?: boolean) => element is ExcalidrawBindableElement;
20
+ export declare const isBindableElement: (element: ExcalidrawElement | null | undefined, includeLocked?: boolean) => element is ExcalidrawBindableElement;
21
21
  export declare const isTextBindableContainer: (element: ExcalidrawElement | null, includeLocked?: boolean) => element is ExcalidrawTextContainer;
22
22
  export declare const isExcalidrawElement: (element: any) => element is ExcalidrawElement;
23
23
  export declare const hasBoundTextElement: (element: ExcalidrawElement | null) => element is MarkNonNullable<ExcalidrawBindableElement, "boundElements">;