@jlceda/pro-api-types 0.1.138 → 0.1.140
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/index.d.ts +8 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -731,7 +731,7 @@ declare class DMT_Schematic {
|
|
|
731
731
|
* 文档树 / 选择控制类
|
|
732
732
|
*
|
|
733
733
|
* @public
|
|
734
|
-
* @remarks
|
|
734
|
+
* @remarks 在文档树内进行选择焦点的查询、控制
|
|
735
735
|
*/
|
|
736
736
|
declare class DMT_SelectControl {
|
|
737
737
|
/**
|
|
@@ -1447,11 +1447,11 @@ declare enum EPCB_PrimitivePadShapeType {
|
|
|
1447
1447
|
*/
|
|
1448
1448
|
declare enum EPCB_PrimitivePadType {
|
|
1449
1449
|
/** 焊盘 */
|
|
1450
|
-
NORMAL =
|
|
1450
|
+
NORMAL = 0,
|
|
1451
1451
|
/** 测试点 */
|
|
1452
|
-
TEST =
|
|
1452
|
+
TEST = 1,
|
|
1453
1453
|
/** 标识点 */
|
|
1454
|
-
MARK_POINT =
|
|
1454
|
+
MARK_POINT = 2
|
|
1455
1455
|
}
|
|
1456
1456
|
|
|
1457
1457
|
/**
|
|
@@ -3495,8 +3495,8 @@ declare class IPCB_PrimitiveAttribute implements IPCB_Primitive {
|
|
|
3495
3495
|
* 设置属性状态:是否镜像
|
|
3496
3496
|
*
|
|
3497
3497
|
* @beta
|
|
3498
|
-
* @param mirror -
|
|
3499
|
-
* @returns
|
|
3498
|
+
* @param mirror - 是否镜像
|
|
3499
|
+
* @returns ��性图元对象
|
|
3500
3500
|
*/
|
|
3501
3501
|
setState_Mirror(mirror: boolean): IPCB_PrimitiveAttribute;
|
|
3502
3502
|
/**
|
|
@@ -11532,7 +11532,7 @@ declare class PCB_PrimitiveImage implements IPCB_PrimitiveAPI {
|
|
|
11532
11532
|
* @remarks 如需创建彩色丝印图像,请使用 {@link PCB_PrimitiveObject | 二进制内嵌对象图元类}
|
|
11533
11533
|
* @param x - BBox 左上点坐标 X
|
|
11534
11534
|
* @param y - BBox 左上点坐标 Y
|
|
11535
|
-
* @param complexPolygon - 图像源数据(复杂多边形),可以使用 {@link PCB_MathPolygon.convertImageToComplexPolygon}
|
|
11535
|
+
* @param complexPolygon - 图像源数据(复杂多边形),可以使用 {@link PCB_MathPolygon.convertImageToComplexPolygon} 方法将图像文件转换为��杂多边形数据
|
|
11536
11536
|
* @param layer - 层
|
|
11537
11537
|
* @param width - 宽
|
|
11538
11538
|
* @param height - 高
|
|
@@ -12755,7 +12755,7 @@ declare class SCH_PrimitiveCircle implements ISCH_PrimitiveAPI {
|
|
|
12755
12755
|
*
|
|
12756
12756
|
* @beta
|
|
12757
12757
|
* @param primitiveIds - 圆的图元 ID,可以为字符串或字符串数组,如若为数组,则返回的也是数组
|
|
12758
|
-
* @returns
|
|
12758
|
+
* @returns 圆图元对象,`undefined` ���示获取失败
|
|
12759
12759
|
*/
|
|
12760
12760
|
get(primitiveIds: string): Promise<ISCH_PrimitiveCircle | undefined>;
|
|
12761
12761
|
/**
|