mxdraw 0.1.196 → 0.1.198
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 +5 -1
- 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
|
@@ -1372,7 +1372,7 @@ declare class MxFunClass {
|
|
|
1372
1372
|
* }
|
|
1373
1373
|
* ```
|
|
1374
1374
|
*/
|
|
1375
|
-
sendStringToExecute: (cmdName: string,
|
|
1375
|
+
sendStringToExecute: (cmdName: string, ages?: any) => boolean;
|
|
1376
1376
|
/**
|
|
1377
1377
|
* 调用后台服务程序中的NodeJS用户定义函数 后台程序使用Mx.MxFun.registFun注册用户定义函数
|
|
1378
1378
|
* @param funName 函数名
|
|
@@ -1755,6 +1755,10 @@ declare class MxFunClass {
|
|
|
1755
1755
|
getHostUrl: () => string;
|
|
1756
1756
|
/** 监听use或者调用自定义图形定义的绘制命令后创建图形对象的回调 */
|
|
1757
1757
|
onUseCreateMxDbEntity(callback: (...ages: [MxDbEntity]) => any): void;
|
|
1758
|
+
/**
|
|
1759
|
+
* 初始快捷命令。
|
|
1760
|
+
* */
|
|
1761
|
+
initQuickCommand: (aryQuickCommand: string[][]) => void;
|
|
1758
1762
|
}
|
|
1759
1763
|
declare const MxFun: MxFunClass;
|
|
1760
1764
|
|