mxdraw 0.1.165 → 0.1.166

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
@@ -3817,7 +3817,7 @@ declare class MxDbShape extends MxDbEntity {
3817
3817
  rotation?: number;
3818
3818
  center?: THREE.Vector2;
3819
3819
  } | undefined;
3820
- setFillImageParam(param: typeof this$1.fillImageParam): void;
3820
+ setFillImageParam(param: MxDbShape["fillImageParam"]): void;
3821
3821
  /** 线段细分数值 */
3822
3822
  curveSegments: number;
3823
3823
  setCurveSegments(curveSegments: number): this;
@@ -4850,9 +4850,9 @@ declare class Layer extends RenderOrderNode<{}, MxDbEntity> {
4850
4850
  * new Layer().add(new MxDbLine(), new MxDbLine(), 3)
4851
4851
  * ```
4852
4852
  */
4853
- add(...entityList: typeof this$1.children): this;
4853
+ add(...entityList: MxDbEntity[]): this;
4854
4854
  /*** 移除该层的MxDbEntity, MxDbEntity回退到默认层*/
4855
- remove(...entityList: typeof this$1.children): this;
4855
+ remove(...entityList: MxDbEntity[]): this;
4856
4856
  }
4857
4857
 
4858
4858
  declare const Mx_loadCoreCode: typeof loadCoreCode;