mxdraw 0.1.152 → 0.1.154
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/lib/MxModule.d.ts
CHANGED
|
@@ -1216,6 +1216,14 @@ declare class MxDrawObject {
|
|
|
1216
1216
|
* ```
|
|
1217
1217
|
*/
|
|
1218
1218
|
addEvent(eventNaem: string, fun: (...parmes: any) => any): void;
|
|
1219
|
+
/**
|
|
1220
|
+
* 移除事件函数。
|
|
1221
|
+
* @param options { eventNaem: string, fun:any; }
|
|
1222
|
+
* @returns boolean
|
|
1223
|
+
* @example
|
|
1224
|
+
* ```
|
|
1225
|
+
*/
|
|
1226
|
+
removeEventFuction(eventNaem: string, fun: any): boolean;
|
|
1219
1227
|
/**
|
|
1220
1228
|
* 控件对象的事件监听
|
|
1221
1229
|
* @param eventNaem 事件名称
|