mxdraw 0.1.311 → 0.1.312
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 +7 -0
- package/dist/mxdraw.esm.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/package.json +1 -1
package/dist/mxdraw.d.ts
CHANGED
|
@@ -1182,6 +1182,13 @@ declare class MxFunClass {
|
|
|
1182
1182
|
* ```
|
|
1183
1183
|
*/
|
|
1184
1184
|
setMxServer(MXSERVER?: string): void;
|
|
1185
|
+
/**
|
|
1186
|
+
* 设置加载图片回调函数。
|
|
1187
|
+
* @example
|
|
1188
|
+
* ``` typescript
|
|
1189
|
+
* ```
|
|
1190
|
+
*/
|
|
1191
|
+
setloadImageFuction(call: (url: string, onLoad?: (texture: any) => void, onError?: (event: any) => void) => void): void;
|
|
1185
1192
|
/**
|
|
1186
1193
|
* MxFun 模块
|
|
1187
1194
|
* mxdraw模块初始化同步
|