mxdraw 0.1.226 → 0.1.228
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 +1 -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
|
@@ -552,7 +552,7 @@ declare abstract class MxDbEntity extends RenderOrderNode<EntityEvent, MxDbEntit
|
|
|
552
552
|
/** 注册该类的cmd命令和初始化 (引入该类时自动注册 当该类的isRegister为ture时表示已经注册) */
|
|
553
553
|
static register(): void;
|
|
554
554
|
/** 使用该类的cmd命令 执行默认的绘制功能 */
|
|
555
|
-
static use<T extends MxDbEntity = MxDbEntity>(callback?: (obj: T) => any): Promise<T>;
|
|
555
|
+
static use<T extends MxDbEntity = MxDbEntity>(callback?: (obj: T) => any, data?: any): Promise<T>;
|
|
556
556
|
/**
|
|
557
557
|
* 颜色值
|
|
558
558
|
* */
|