@jlceda/pro-api-types 0.1.142 → 0.1.144
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 +9 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1388,7 +1388,7 @@ declare enum EPCB_PrimitiveDimensionType {
|
|
|
1388
1388
|
* @remarks 网格填充和内电层填充为预留配置
|
|
1389
1389
|
*/
|
|
1390
1390
|
declare enum EPCB_PrimitiveFillMode {
|
|
1391
|
-
/**
|
|
1391
|
+
/** 实心填充 */
|
|
1392
1392
|
SOLID = 0,
|
|
1393
1393
|
/** 网格填充 */
|
|
1394
1394
|
MESH = 1,
|
|
@@ -2160,7 +2160,7 @@ declare interface IDMT_PcbItem {
|
|
|
2160
2160
|
readonly itemType: EDMT_ItemType.PCB | EDMT_ItemType.CBB_PCB;
|
|
2161
2161
|
/** PCB UUID */
|
|
2162
2162
|
uuid: string;
|
|
2163
|
-
/** PCB
|
|
2163
|
+
/** PCB ���称 */
|
|
2164
2164
|
name: string;
|
|
2165
2165
|
/** 所属工程 UUID */
|
|
2166
2166
|
parentProjectUuid: string;
|
|
@@ -5365,7 +5365,7 @@ declare class IPCB_PrimitivePad implements IPCB_Primitive {
|
|
|
5365
5365
|
* 设置属性状态:焊盘类型
|
|
5366
5366
|
*
|
|
5367
5367
|
* @beta
|
|
5368
|
-
* @param padType -
|
|
5368
|
+
* @param padType - 焊盘类型
|
|
5369
5369
|
* @returns 焊盘图元对象
|
|
5370
5370
|
*/
|
|
5371
5371
|
private setState_PadType;
|
|
@@ -6000,7 +6000,7 @@ declare class IPCB_PrimitiveRegion implements IPCB_Primitive {
|
|
|
6000
6000
|
*/
|
|
6001
6001
|
setState_LineWidth(lineWidth: number): IPCB_PrimitiveRegion;
|
|
6002
6002
|
/**
|
|
6003
|
-
*
|
|
6003
|
+
* 设置属性状态:��否锁定
|
|
6004
6004
|
*
|
|
6005
6005
|
* @beta
|
|
6006
6006
|
* @param primitiveLock - 是否锁定
|
|
@@ -7311,7 +7311,7 @@ declare class ISCH_PrimitiveComponent implements ISCH_Primitive {
|
|
|
7311
7311
|
*/
|
|
7312
7312
|
getState_SubPartName(): string | undefined;
|
|
7313
7313
|
/**
|
|
7314
|
-
*
|
|
7314
|
+
* 获取属性状态:旋转角��
|
|
7315
7315
|
*
|
|
7316
7316
|
* @public
|
|
7317
7317
|
* @returns 旋转角度
|
|
@@ -10381,7 +10381,7 @@ declare class PCB_Drc {
|
|
|
10381
10381
|
* 将焊盘对添加到焊盘对组
|
|
10382
10382
|
*
|
|
10383
10383
|
* @beta
|
|
10384
|
-
* @param padPairGroupName -
|
|
10384
|
+
* @param padPairGroupName - 焊盘对组名称
|
|
10385
10385
|
* @param padPair - 焊盘对
|
|
10386
10386
|
* @returns 操作是否成功
|
|
10387
10387
|
* @example 有三种不同的用法,确保画布上已有对应的焊盘。 分别是 一,游离焊盘-游离焊盘;二,器件焊盘 - 器件焊盘;三,器件焊盘 - 游离焊盘
|
|
@@ -11934,7 +11934,7 @@ declare class PCB_PrimitivePolyline implements IPCB_PrimitiveAPI {
|
|
|
11934
11934
|
*
|
|
11935
11935
|
* @beta
|
|
11936
11936
|
* @param primitiveIds - 折线的图元 ID,可以为字符串或字符串数组,如若为数组,则返回的也是数组
|
|
11937
|
-
* @returns 折线图元对象,`undefined`
|
|
11937
|
+
* @returns 折线图元对象,`undefined` ���示获取失败
|
|
11938
11938
|
*/
|
|
11939
11939
|
get(primitiveIds: string): Promise<IPCB_PrimitivePolyline | undefined>;
|
|
11940
11940
|
/**
|
|
@@ -13969,7 +13969,7 @@ declare class SYS_FileManager {
|
|
|
13969
13969
|
* @remarks
|
|
13970
13970
|
* 可以使用 {@link SYS_FileSystem.saveFile} 接口将文件导出到本地文件系统
|
|
13971
13971
|
*
|
|
13972
|
-
* 注意:本接口需要启用
|
|
13972
|
+
* 注意:本接口需要启用 **工程管�� \> 下载工程** 权限,没有权限调用将始终 `throw Error`
|
|
13973
13973
|
*
|
|
13974
13974
|
* @param fileName - 文件名
|
|
13975
13975
|
* @param password - 加密密码
|
|
@@ -15023,6 +15023,7 @@ declare class SYS_Window {
|
|
|
15023
15023
|
* @param removableObject - 窗口事件监听可移除对象
|
|
15024
15024
|
*/
|
|
15025
15025
|
removeEventListener(removableObject: ISYS_WindowEventListenerRemovableObject): void;
|
|
15026
|
+
/* Excluded from this release type: openUI */
|
|
15026
15027
|
}
|
|
15027
15028
|
|
|
15028
15029
|
/**
|