mxdraw 0.1.262 → 0.1.263

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 CHANGED
@@ -3473,7 +3473,9 @@ declare enum DetailedResult {
3473
3473
  /** ESC输入 */
3474
3474
  kEcsIn = 11,
3475
3475
  /** 新命令,使用当前命令退出. */
3476
- kNewCommadIn = 12
3476
+ kNewCommadIn = 12,
3477
+ /** 程序终止. */
3478
+ kCodeAbort = 13
3477
3479
  }
3478
3480
  /** 用户输入函数控制操作符 */
3479
3481
  declare enum UserInputControls {
@@ -3683,6 +3685,11 @@ declare class MrxDbgUiPrPoint extends MrxDbgUiPrBase {
3683
3685
  * @returns void
3684
3686
  */
3685
3687
  goWhile(retcall: (status: MrxDbgUiPrBaseReturn) => any, exitcall?: (status: MrxDbgUiPrBaseReturn) => any): void;
3688
+ /**
3689
+ * 停止当前动态拖动
3690
+ * @returns void
3691
+ */
3692
+ abort(cause: DetailedResult): void;
3686
3693
  }
3687
3694
 
3688
3695
  declare function drawMxDbImage(): void;