mxdraw 0.1.358 → 0.1.360
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
|
@@ -1223,6 +1223,13 @@ declare class MxFunClass {
|
|
|
1223
1223
|
* ```
|
|
1224
1224
|
*/
|
|
1225
1225
|
setloadImageFuction(call: (url: string, onLoad?: (texture: any) => void, onError?: (event: any) => void, fileType?: string, isTifInverse?: boolean) => void): void;
|
|
1226
|
+
/**
|
|
1227
|
+
* 设置在加载图片,用来设置图片显示用的纹理参数
|
|
1228
|
+
* @example
|
|
1229
|
+
* ``` typescript
|
|
1230
|
+
* ```
|
|
1231
|
+
*/
|
|
1232
|
+
setTextureParamFuction(call: (url: string, texture: any) => void): void;
|
|
1226
1233
|
/**
|
|
1227
1234
|
* MxFun 模块
|
|
1228
1235
|
* mxdraw模块初始化同步
|