mxdraw 0.1.366 → 0.1.368
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 +10 -2
- 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
|
@@ -1029,7 +1029,7 @@ declare class MxVueComandLine {
|
|
|
1029
1029
|
msCmdTip: string;
|
|
1030
1030
|
msCmdDisplay: string;
|
|
1031
1031
|
msCmdText: string;
|
|
1032
|
-
}) => void) | undefined
|
|
1032
|
+
}) => void) | undefined | Array<any>;
|
|
1033
1033
|
mxFunObject: undefined;
|
|
1034
1034
|
mountUpDisplayFun: (fun: ((data: {
|
|
1035
1035
|
msCmdTip: string;
|
|
@@ -1570,13 +1570,21 @@ declare class MxFunClass {
|
|
|
1570
1570
|
*/
|
|
1571
1571
|
isRunningCommand: () => boolean;
|
|
1572
1572
|
/**
|
|
1573
|
-
*
|
|
1573
|
+
* 当前正在运行的命令交互对象McEdJigCommand。
|
|
1574
1574
|
* @return any
|
|
1575
1575
|
* @example
|
|
1576
1576
|
* ``` typescript
|
|
1577
1577
|
* ```
|
|
1578
1578
|
*/
|
|
1579
1579
|
getRunningCommand: () => any;
|
|
1580
|
+
/**
|
|
1581
|
+
* 当前正在运行的命令名。
|
|
1582
|
+
* @return any
|
|
1583
|
+
* @example
|
|
1584
|
+
* ``` typescript
|
|
1585
|
+
* ```
|
|
1586
|
+
*/
|
|
1587
|
+
getRunningCommandName: () => string;
|
|
1580
1588
|
/**
|
|
1581
1589
|
* 窗口缩放,把指定的范围内的图形放到视区中
|
|
1582
1590
|
* @param dLBx 矩形框范围的左下角X坐标
|