mxdraw 0.1.204 → 0.1.206

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/dist/mxdraw.d.ts CHANGED
@@ -2734,6 +2734,24 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
2734
2734
  * ```
2735
2735
  */
2736
2736
  addControlsEvent(type: string, call: (event: any) => number, isFront?: boolean): number;
2737
+ /**
2738
+ * 清除图上所有数据
2739
+ * @example
2740
+ * ```typescript
2741
+ *
2742
+ *
2743
+ * ```
2744
+ */
2745
+ clearAllObject(): any;
2746
+ /**
2747
+ * 设置点选支持多选,默认不支持。
2748
+ * @example
2749
+ * ```typescript
2750
+ *
2751
+ *
2752
+ * ```
2753
+ */
2754
+ setPointMultipleSelect(isMultipleSelect?: boolean): void;
2737
2755
  }
2738
2756
 
2739
2757
  /**