kicadts 0.0.31 → 0.0.33
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/index.d.ts +281 -56
- package/dist/index.js +718 -43
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -109,6 +109,11 @@ declare class InBom extends SxPrimitiveBoolean {
|
|
|
109
109
|
token: string;
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
+
declare class InPosFiles extends SxPrimitiveBoolean {
|
|
113
|
+
static token: string;
|
|
114
|
+
token: string;
|
|
115
|
+
}
|
|
116
|
+
|
|
112
117
|
declare class OnBoard extends SxPrimitiveBoolean {
|
|
113
118
|
static token: string;
|
|
114
119
|
token: string;
|
|
@@ -651,6 +656,36 @@ declare class FieldsAutoplaced extends SxPrimitiveBoolean {
|
|
|
651
656
|
token: string;
|
|
652
657
|
}
|
|
653
658
|
|
|
659
|
+
declare class PropertyDoNotAutoplace extends SxPrimitiveBoolean {
|
|
660
|
+
static token: string;
|
|
661
|
+
static parentToken: string;
|
|
662
|
+
token: string;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
declare class PropertyHide extends SxPrimitiveBoolean {
|
|
666
|
+
static token: string;
|
|
667
|
+
static parentToken: string;
|
|
668
|
+
token: string;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
declare class PropertyShowName extends SxPrimitiveBoolean {
|
|
672
|
+
static token: string;
|
|
673
|
+
static parentToken: string;
|
|
674
|
+
token: string;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
declare class SymbolBodyStyle extends SxPrimitiveNumber {
|
|
678
|
+
static token: string;
|
|
679
|
+
static parentToken: string;
|
|
680
|
+
token: string;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
declare class SymbolBodyStyles extends SxPrimitiveString {
|
|
684
|
+
static token: string;
|
|
685
|
+
static parentToken: string;
|
|
686
|
+
token: string;
|
|
687
|
+
}
|
|
688
|
+
|
|
654
689
|
declare class SymbolLibName extends SxPrimitiveString {
|
|
655
690
|
static token: string;
|
|
656
691
|
static parentToken: string;
|
|
@@ -941,7 +976,9 @@ declare class SymbolPower extends SxClass {
|
|
|
941
976
|
static token: string;
|
|
942
977
|
static parentToken: string;
|
|
943
978
|
token: string;
|
|
944
|
-
|
|
979
|
+
value?: string;
|
|
980
|
+
constructor(value?: string);
|
|
981
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SymbolPower;
|
|
945
982
|
getChildren(): SxClass[];
|
|
946
983
|
getString(): string;
|
|
947
984
|
}
|
|
@@ -951,11 +988,14 @@ interface SchematicSymbolConstructorParams {
|
|
|
951
988
|
at?: AtInput;
|
|
952
989
|
mirror?: string | Mirror;
|
|
953
990
|
unit?: number | SymbolUnit;
|
|
991
|
+
bodyStyle?: number | SymbolBodyStyle;
|
|
992
|
+
bodyStyles?: string | SymbolBodyStyles;
|
|
954
993
|
pinNumbers?: SymbolPinNumbers;
|
|
955
994
|
pinNames?: SymbolPinNames;
|
|
956
995
|
excludeFromSim?: boolean;
|
|
957
996
|
inBom?: boolean;
|
|
958
997
|
onBoard?: boolean;
|
|
998
|
+
inPosFiles?: boolean;
|
|
959
999
|
dnp?: boolean;
|
|
960
1000
|
uuid?: string;
|
|
961
1001
|
duplicatePinNumbersAreJumpers?: boolean;
|
|
@@ -980,11 +1020,14 @@ declare class SchematicSymbol extends SxClass {
|
|
|
980
1020
|
_sxAt?: At;
|
|
981
1021
|
_sxMirror?: Mirror;
|
|
982
1022
|
_sxUnit?: SymbolUnit;
|
|
1023
|
+
_sxBodyStyle?: SymbolBodyStyle;
|
|
1024
|
+
_sxBodyStyles?: SymbolBodyStyles;
|
|
983
1025
|
_sxPinNumbers?: SymbolPinNumbers;
|
|
984
1026
|
_sxPinNames?: SymbolPinNames;
|
|
985
1027
|
_sxExcludeFromSim?: ExcludeFromSim;
|
|
986
1028
|
_sxInBom?: InBom;
|
|
987
1029
|
_sxOnBoard?: OnBoard;
|
|
1030
|
+
_sxInPosFiles?: InPosFiles;
|
|
988
1031
|
_sxDnp?: Dnp;
|
|
989
1032
|
_sxUuid?: Uuid;
|
|
990
1033
|
_sxDuplicatePinNumbersAreJumpers?: SymbolDuplicatePinNumbersAreJumpers;
|
|
@@ -1013,6 +1056,10 @@ declare class SchematicSymbol extends SxClass {
|
|
|
1013
1056
|
set mirror(value: string | Mirror | undefined);
|
|
1014
1057
|
get unit(): number | undefined;
|
|
1015
1058
|
set unit(value: number | undefined);
|
|
1059
|
+
get bodyStyle(): number | undefined;
|
|
1060
|
+
set bodyStyle(value: number | SymbolBodyStyle | undefined);
|
|
1061
|
+
get bodyStyles(): string | undefined;
|
|
1062
|
+
set bodyStyles(value: string | SymbolBodyStyles | undefined);
|
|
1016
1063
|
get pinNumbers(): SymbolPinNumbers | undefined;
|
|
1017
1064
|
set pinNumbers(value: SymbolPinNumbers | undefined);
|
|
1018
1065
|
get pinNames(): SymbolPinNames | undefined;
|
|
@@ -1023,6 +1070,8 @@ declare class SchematicSymbol extends SxClass {
|
|
|
1023
1070
|
set excludeFromSim(value: boolean);
|
|
1024
1071
|
get onBoard(): boolean | undefined;
|
|
1025
1072
|
set onBoard(value: boolean | undefined);
|
|
1073
|
+
get inPosFiles(): boolean | undefined;
|
|
1074
|
+
set inPosFiles(value: boolean | undefined);
|
|
1026
1075
|
get dnp(): boolean;
|
|
1027
1076
|
set dnp(value: boolean);
|
|
1028
1077
|
get fieldsAutoplaced(): boolean;
|
|
@@ -1051,12 +1100,18 @@ declare class SymbolProperty extends SxClass {
|
|
|
1051
1100
|
value: string;
|
|
1052
1101
|
_sxId?: SymbolPropertyId;
|
|
1053
1102
|
_sxAt?: At;
|
|
1103
|
+
_sxShowName?: PropertyShowName;
|
|
1104
|
+
_sxDoNotAutoplace?: PropertyDoNotAutoplace;
|
|
1105
|
+
_sxHide?: PropertyHide;
|
|
1054
1106
|
_sxEffects?: TextEffects;
|
|
1055
1107
|
constructor(params: {
|
|
1056
1108
|
key: string;
|
|
1057
1109
|
value: string;
|
|
1058
1110
|
id?: number | SymbolPropertyId;
|
|
1059
1111
|
at?: AtInput;
|
|
1112
|
+
showName?: boolean | PropertyShowName;
|
|
1113
|
+
doNotAutoplace?: boolean | PropertyDoNotAutoplace;
|
|
1114
|
+
hidden?: boolean | PropertyHide;
|
|
1060
1115
|
effects?: TextEffects;
|
|
1061
1116
|
});
|
|
1062
1117
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SymbolProperty;
|
|
@@ -1064,6 +1119,12 @@ declare class SymbolProperty extends SxClass {
|
|
|
1064
1119
|
set id(value: number | undefined);
|
|
1065
1120
|
get at(): At | undefined;
|
|
1066
1121
|
set at(value: AtInput | undefined);
|
|
1122
|
+
get showName(): boolean | undefined;
|
|
1123
|
+
set showName(value: boolean | undefined);
|
|
1124
|
+
get doNotAutoplace(): boolean | undefined;
|
|
1125
|
+
set doNotAutoplace(value: boolean | undefined);
|
|
1126
|
+
get hidden(): boolean;
|
|
1127
|
+
set hidden(value: boolean);
|
|
1067
1128
|
get effects(): TextEffects | undefined;
|
|
1068
1129
|
set effects(value: TextEffects | undefined);
|
|
1069
1130
|
getChildren(): SxClass[];
|
|
@@ -1405,12 +1466,6 @@ declare class Label extends SxClass {
|
|
|
1405
1466
|
getString(): string;
|
|
1406
1467
|
}
|
|
1407
1468
|
|
|
1408
|
-
declare class PropertyHide extends SxPrimitiveBoolean {
|
|
1409
|
-
static token: string;
|
|
1410
|
-
static parentToken: string;
|
|
1411
|
-
token: string;
|
|
1412
|
-
}
|
|
1413
|
-
|
|
1414
1469
|
declare class PropertyUnlocked extends SxPrimitiveBoolean {
|
|
1415
1470
|
static token: string;
|
|
1416
1471
|
static parentToken: string;
|
|
@@ -1691,12 +1746,16 @@ declare class SheetProperty extends SxClass {
|
|
|
1691
1746
|
value: string;
|
|
1692
1747
|
private _sxId?;
|
|
1693
1748
|
private _sxAt?;
|
|
1749
|
+
private _sxShowName?;
|
|
1750
|
+
private _sxDoNotAutoplace?;
|
|
1694
1751
|
private _sxEffects?;
|
|
1695
1752
|
constructor(params: {
|
|
1696
1753
|
key: string;
|
|
1697
1754
|
value: string;
|
|
1698
1755
|
id?: number | SymbolPropertyId;
|
|
1699
1756
|
at?: At;
|
|
1757
|
+
showName?: boolean | PropertyShowName;
|
|
1758
|
+
doNotAutoplace?: boolean | PropertyDoNotAutoplace;
|
|
1700
1759
|
effects?: TextEffects;
|
|
1701
1760
|
});
|
|
1702
1761
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SheetProperty;
|
|
@@ -1705,6 +1764,10 @@ declare class SheetProperty extends SxClass {
|
|
|
1705
1764
|
get idClass(): SymbolPropertyId | undefined;
|
|
1706
1765
|
get at(): At | undefined;
|
|
1707
1766
|
set at(value: At | undefined);
|
|
1767
|
+
get showName(): boolean | undefined;
|
|
1768
|
+
set showName(value: boolean | PropertyShowName | undefined);
|
|
1769
|
+
get doNotAutoplace(): boolean | undefined;
|
|
1770
|
+
set doNotAutoplace(value: boolean | PropertyDoNotAutoplace | undefined);
|
|
1708
1771
|
get effects(): TextEffects | undefined;
|
|
1709
1772
|
set effects(value: TextEffects | undefined);
|
|
1710
1773
|
getChildren(): SxClass[];
|
|
@@ -2156,14 +2219,14 @@ declare class PadNet extends SxClass {
|
|
|
2156
2219
|
static token: string;
|
|
2157
2220
|
static parentToken: string;
|
|
2158
2221
|
token: string;
|
|
2159
|
-
private _id
|
|
2160
|
-
private _name
|
|
2161
|
-
constructor(
|
|
2222
|
+
private _id?;
|
|
2223
|
+
private _name?;
|
|
2224
|
+
constructor(idOrName: number | string, name?: string);
|
|
2162
2225
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PadNet;
|
|
2163
|
-
get id(): number;
|
|
2164
|
-
set id(value: number);
|
|
2165
|
-
get name(): string;
|
|
2166
|
-
set name(value: string);
|
|
2226
|
+
get id(): number | undefined;
|
|
2227
|
+
set id(value: number | undefined);
|
|
2228
|
+
get name(): string | undefined;
|
|
2229
|
+
set name(value: string | undefined);
|
|
2167
2230
|
getChildren(): SxClass[];
|
|
2168
2231
|
getString(): string;
|
|
2169
2232
|
}
|
|
@@ -3520,6 +3583,44 @@ declare class FootprintPlaced extends SxPrimitiveBoolean {
|
|
|
3520
3583
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintPlaced;
|
|
3521
3584
|
}
|
|
3522
3585
|
|
|
3586
|
+
declare class FootprintDuplicatePadNumbersAreJumpers extends SxPrimitiveString {
|
|
3587
|
+
static token: string;
|
|
3588
|
+
static parentToken: string;
|
|
3589
|
+
token: string;
|
|
3590
|
+
}
|
|
3591
|
+
|
|
3592
|
+
declare class FootprintPoint extends SxClass {
|
|
3593
|
+
static token: string;
|
|
3594
|
+
static parentToken: string;
|
|
3595
|
+
token: string;
|
|
3596
|
+
private _sxAt?;
|
|
3597
|
+
private _sxSize?;
|
|
3598
|
+
private _sxLayer?;
|
|
3599
|
+
private _sxUuid?;
|
|
3600
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintPoint;
|
|
3601
|
+
getChildren(): SxClass[];
|
|
3602
|
+
}
|
|
3603
|
+
|
|
3604
|
+
declare class FootprintUnit extends SxClass {
|
|
3605
|
+
static token: string;
|
|
3606
|
+
static parentToken: string;
|
|
3607
|
+
token: string;
|
|
3608
|
+
private _sxName?;
|
|
3609
|
+
private _sxPins?;
|
|
3610
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintUnit;
|
|
3611
|
+
getChildren(): SxClass[];
|
|
3612
|
+
}
|
|
3613
|
+
|
|
3614
|
+
declare class FootprintUnits extends SxClass {
|
|
3615
|
+
static token: string;
|
|
3616
|
+
static parentToken: string;
|
|
3617
|
+
token: string;
|
|
3618
|
+
private _units;
|
|
3619
|
+
constructor(units?: FootprintUnit[]);
|
|
3620
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintUnits;
|
|
3621
|
+
getChildren(): SxClass[];
|
|
3622
|
+
}
|
|
3623
|
+
|
|
3523
3624
|
declare class Zone extends SxClass {
|
|
3524
3625
|
static token: string;
|
|
3525
3626
|
token: string;
|
|
@@ -3559,6 +3660,8 @@ interface FootprintConstructorParams {
|
|
|
3559
3660
|
netTiePadGroups?: FootprintNetTiePadGroups;
|
|
3560
3661
|
sheetname?: string | FootprintSheetname;
|
|
3561
3662
|
sheetfile?: string | FootprintSheetfile;
|
|
3663
|
+
units?: FootprintUnits;
|
|
3664
|
+
duplicatePadNumbersAreJumpers?: string | FootprintDuplicatePadNumbersAreJumpers;
|
|
3562
3665
|
embeddedFonts?: EmbeddedFonts;
|
|
3563
3666
|
embeddedFiles?: EmbeddedFiles;
|
|
3564
3667
|
properties?: Property[];
|
|
@@ -3569,6 +3672,7 @@ interface FootprintConstructorParams {
|
|
|
3569
3672
|
fpCircles?: FpCircle[];
|
|
3570
3673
|
fpArcs?: FpArc[];
|
|
3571
3674
|
fpPolys?: FpPoly[];
|
|
3675
|
+
points?: FootprintPoint[];
|
|
3572
3676
|
pads?: FootprintPad[];
|
|
3573
3677
|
models?: FootprintModel[];
|
|
3574
3678
|
zones?: Zone[];
|
|
@@ -3605,6 +3709,8 @@ declare class Footprint extends SxClass {
|
|
|
3605
3709
|
private _sxNetTiePadGroups?;
|
|
3606
3710
|
private _sxSheetname?;
|
|
3607
3711
|
private _sxSheetfile?;
|
|
3712
|
+
private _sxUnits?;
|
|
3713
|
+
private _sxDuplicatePadNumbersAreJumpers?;
|
|
3608
3714
|
private _sxEmbeddedFonts?;
|
|
3609
3715
|
private _sxEmbeddedFiles?;
|
|
3610
3716
|
private _properties;
|
|
@@ -3615,6 +3721,7 @@ declare class Footprint extends SxClass {
|
|
|
3615
3721
|
private _fpCircles;
|
|
3616
3722
|
private _fpArcs;
|
|
3617
3723
|
private _fpPolys;
|
|
3724
|
+
private _points;
|
|
3618
3725
|
private _fpPads;
|
|
3619
3726
|
private _models;
|
|
3620
3727
|
private _zones;
|
|
@@ -3676,6 +3783,10 @@ declare class Footprint extends SxClass {
|
|
|
3676
3783
|
set sheetname(value: string | FootprintSheetname | undefined);
|
|
3677
3784
|
get sheetfile(): string | undefined;
|
|
3678
3785
|
set sheetfile(value: string | FootprintSheetfile | undefined);
|
|
3786
|
+
get units(): FootprintUnits | undefined;
|
|
3787
|
+
set units(value: FootprintUnits | undefined);
|
|
3788
|
+
get duplicatePadNumbersAreJumpers(): string | undefined;
|
|
3789
|
+
set duplicatePadNumbersAreJumpers(value: string | FootprintDuplicatePadNumbersAreJumpers | undefined);
|
|
3679
3790
|
get embeddedFonts(): EmbeddedFonts | undefined;
|
|
3680
3791
|
set embeddedFonts(value: EmbeddedFonts | undefined);
|
|
3681
3792
|
get embeddedFiles(): EmbeddedFiles | undefined;
|
|
@@ -3696,6 +3807,8 @@ declare class Footprint extends SxClass {
|
|
|
3696
3807
|
set fpArcs(value: FpArc[]);
|
|
3697
3808
|
get fpPolys(): FpPoly[];
|
|
3698
3809
|
set fpPolys(value: FpPoly[]);
|
|
3810
|
+
get points(): FootprintPoint[];
|
|
3811
|
+
set points(value: FootprintPoint[]);
|
|
3699
3812
|
get fpPads(): FootprintPad[];
|
|
3700
3813
|
set fpPads(value: FootprintPad[]);
|
|
3701
3814
|
get models(): FootprintModel[];
|
|
@@ -3706,6 +3819,34 @@ declare class Footprint extends SxClass {
|
|
|
3706
3819
|
getString(): string;
|
|
3707
3820
|
}
|
|
3708
3821
|
|
|
3822
|
+
declare class FootprintPointSize extends SxPrimitiveNumber {
|
|
3823
|
+
static token: string;
|
|
3824
|
+
static parentToken: string;
|
|
3825
|
+
token: string;
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3828
|
+
declare class FootprintUnitName extends SxClass {
|
|
3829
|
+
static token: string;
|
|
3830
|
+
static parentToken: string;
|
|
3831
|
+
token: string;
|
|
3832
|
+
value: string;
|
|
3833
|
+
constructor(value: string);
|
|
3834
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintUnitName;
|
|
3835
|
+
getChildren(): SxClass[];
|
|
3836
|
+
getString(): string;
|
|
3837
|
+
}
|
|
3838
|
+
|
|
3839
|
+
declare class FootprintUnitPins extends SxClass {
|
|
3840
|
+
static token: string;
|
|
3841
|
+
static parentToken: string;
|
|
3842
|
+
token: string;
|
|
3843
|
+
values: string[];
|
|
3844
|
+
constructor(values?: string[]);
|
|
3845
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintUnitPins;
|
|
3846
|
+
getChildren(): SxClass[];
|
|
3847
|
+
getString(): string;
|
|
3848
|
+
}
|
|
3849
|
+
|
|
3709
3850
|
interface GrArcPoint {
|
|
3710
3851
|
x: number;
|
|
3711
3852
|
y: number;
|
|
@@ -4465,16 +4606,16 @@ declare class SegmentNet extends SxClass {
|
|
|
4465
4606
|
static token: string;
|
|
4466
4607
|
static parentToken: string;
|
|
4467
4608
|
token: string;
|
|
4468
|
-
private _id
|
|
4609
|
+
private _id?;
|
|
4469
4610
|
private _name?;
|
|
4470
|
-
constructor(
|
|
4611
|
+
constructor(idOrName: number | string, name?: string);
|
|
4471
4612
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SegmentNet;
|
|
4472
|
-
get id(): number;
|
|
4473
|
-
set id(value: number);
|
|
4613
|
+
get id(): number | undefined;
|
|
4614
|
+
set id(value: number | undefined);
|
|
4474
4615
|
get name(): string | undefined;
|
|
4475
4616
|
set name(value: string | undefined);
|
|
4476
4617
|
toObject(): {
|
|
4477
|
-
id
|
|
4618
|
+
id?: number;
|
|
4478
4619
|
name?: string;
|
|
4479
4620
|
};
|
|
4480
4621
|
getChildren(): SxClass[];
|
|
@@ -4623,6 +4764,67 @@ declare class TextBoxFill extends SxClass {
|
|
|
4623
4764
|
getChildren(): SxClass[];
|
|
4624
4765
|
}
|
|
4625
4766
|
|
|
4767
|
+
declare abstract class SingleValueProperty<T extends string | number> extends SxClass {
|
|
4768
|
+
protected _value: T;
|
|
4769
|
+
protected quoteStringValue: boolean;
|
|
4770
|
+
constructor(value: T);
|
|
4771
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SingleValueProperty<string | number>;
|
|
4772
|
+
protected static parsePrimitiveValue(value: PrimitiveSExpr | undefined): string | number;
|
|
4773
|
+
get value(): T;
|
|
4774
|
+
set value(value: T);
|
|
4775
|
+
getChildren(): SxClass[];
|
|
4776
|
+
protected formatValue(): string;
|
|
4777
|
+
getString(): string;
|
|
4778
|
+
}
|
|
4779
|
+
declare abstract class NumericListProperty extends SxClass {
|
|
4780
|
+
protected _values: number[];
|
|
4781
|
+
constructor(values: number[]);
|
|
4782
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): NumericListProperty;
|
|
4783
|
+
get values(): number[];
|
|
4784
|
+
set values(values: number[]);
|
|
4785
|
+
getChildren(): SxClass[];
|
|
4786
|
+
getString(): string;
|
|
4787
|
+
}
|
|
4788
|
+
declare abstract class CoordinateProperty extends SxClass {
|
|
4789
|
+
protected _x: number;
|
|
4790
|
+
protected _y: number;
|
|
4791
|
+
constructor(x: number, y: number);
|
|
4792
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): CoordinateProperty;
|
|
4793
|
+
get x(): number;
|
|
4794
|
+
set x(value: number);
|
|
4795
|
+
get y(): number;
|
|
4796
|
+
set y(value: number);
|
|
4797
|
+
getChildren(): SxClass[];
|
|
4798
|
+
getString(): string;
|
|
4799
|
+
}
|
|
4800
|
+
|
|
4801
|
+
declare class Back extends SingleValueProperty<string> {
|
|
4802
|
+
static token: string;
|
|
4803
|
+
token: string;
|
|
4804
|
+
}
|
|
4805
|
+
|
|
4806
|
+
declare class Front extends SingleValueProperty<string> {
|
|
4807
|
+
static token: string;
|
|
4808
|
+
token: string;
|
|
4809
|
+
}
|
|
4810
|
+
|
|
4811
|
+
declare class Covering extends SxClass {
|
|
4812
|
+
static token: string;
|
|
4813
|
+
token: string;
|
|
4814
|
+
private _sxFront?;
|
|
4815
|
+
private _sxBack?;
|
|
4816
|
+
constructor(params?: {
|
|
4817
|
+
front?: Front | string;
|
|
4818
|
+
back?: Back | string;
|
|
4819
|
+
});
|
|
4820
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Covering;
|
|
4821
|
+
get front(): string | undefined;
|
|
4822
|
+
set front(value: Front | string | undefined);
|
|
4823
|
+
get back(): string | undefined;
|
|
4824
|
+
set back(value: Back | string | undefined);
|
|
4825
|
+
getChildren(): SxClass[];
|
|
4826
|
+
}
|
|
4827
|
+
|
|
4626
4828
|
declare class PcbPlotParams extends SxClass {
|
|
4627
4829
|
static token: string;
|
|
4628
4830
|
static parentToken: string;
|
|
@@ -4734,38 +4936,21 @@ declare class PcbPlotParams extends SxClass {
|
|
|
4734
4936
|
set outputdirectory(value: string | undefined);
|
|
4735
4937
|
}
|
|
4736
4938
|
|
|
4737
|
-
declare
|
|
4738
|
-
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
constructor(values: number[]);
|
|
4752
|
-
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): NumericListProperty;
|
|
4753
|
-
get values(): number[];
|
|
4754
|
-
set values(values: number[]);
|
|
4755
|
-
getChildren(): SxClass[];
|
|
4756
|
-
getString(): string;
|
|
4757
|
-
}
|
|
4758
|
-
declare abstract class CoordinateProperty extends SxClass {
|
|
4759
|
-
protected _x: number;
|
|
4760
|
-
protected _y: number;
|
|
4761
|
-
constructor(x: number, y: number);
|
|
4762
|
-
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): CoordinateProperty;
|
|
4763
|
-
get x(): number;
|
|
4764
|
-
set x(value: number);
|
|
4765
|
-
get y(): number;
|
|
4766
|
-
set y(value: number);
|
|
4939
|
+
declare class Plugging extends SxClass {
|
|
4940
|
+
static token: string;
|
|
4941
|
+
token: string;
|
|
4942
|
+
private _sxFront?;
|
|
4943
|
+
private _sxBack?;
|
|
4944
|
+
constructor(params?: {
|
|
4945
|
+
front?: Front | string;
|
|
4946
|
+
back?: Back | string;
|
|
4947
|
+
});
|
|
4948
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Plugging;
|
|
4949
|
+
get front(): string | undefined;
|
|
4950
|
+
set front(value: Front | string | undefined);
|
|
4951
|
+
get back(): string | undefined;
|
|
4952
|
+
set back(value: Back | string | undefined);
|
|
4767
4953
|
getChildren(): SxClass[];
|
|
4768
|
-
getString(): string;
|
|
4769
4954
|
}
|
|
4770
4955
|
|
|
4771
4956
|
declare abstract class StackupSingleValueProperty<T extends string | number> extends SingleValueProperty<T> {
|
|
@@ -4978,6 +5163,14 @@ declare class Setup extends SxClass {
|
|
|
4978
5163
|
set allowSoldermaskBridgesInFootprints(value: string | undefined);
|
|
4979
5164
|
get tenting(): string[] | undefined;
|
|
4980
5165
|
set tenting(sides: string[] | undefined);
|
|
5166
|
+
get covering(): Covering | undefined;
|
|
5167
|
+
set covering(value: Covering | undefined);
|
|
5168
|
+
get plugging(): Plugging | undefined;
|
|
5169
|
+
set plugging(value: Plugging | undefined);
|
|
5170
|
+
get capping(): string | undefined;
|
|
5171
|
+
set capping(value: string | undefined);
|
|
5172
|
+
get filling(): string | undefined;
|
|
5173
|
+
set filling(value: string | undefined);
|
|
4981
5174
|
get auxAxisOrigin(): Coordinate | undefined;
|
|
4982
5175
|
set auxAxisOrigin(origin: Coordinate | undefined);
|
|
4983
5176
|
get gridOrigin(): Coordinate | undefined;
|
|
@@ -4990,6 +5183,16 @@ declare class Setup extends SxClass {
|
|
|
4990
5183
|
set traceWidth(values: number[] | undefined);
|
|
4991
5184
|
}
|
|
4992
5185
|
|
|
5186
|
+
declare class Capping extends SingleValueProperty<string> {
|
|
5187
|
+
static token: string;
|
|
5188
|
+
token: string;
|
|
5189
|
+
}
|
|
5190
|
+
|
|
5191
|
+
declare class Filling extends SingleValueProperty<string> {
|
|
5192
|
+
static token: string;
|
|
5193
|
+
token: string;
|
|
5194
|
+
}
|
|
5195
|
+
|
|
4993
5196
|
declare abstract class PlotParamProperty<T extends string | number> extends SingleValueProperty<T> {
|
|
4994
5197
|
static parentToken: string;
|
|
4995
5198
|
}
|
|
@@ -5350,6 +5553,8 @@ declare class SetupTenting extends SxClass {
|
|
|
5350
5553
|
static parentToken: string;
|
|
5351
5554
|
token: string;
|
|
5352
5555
|
private _sides;
|
|
5556
|
+
private _sxFront?;
|
|
5557
|
+
private _sxBack?;
|
|
5353
5558
|
constructor(sides?: string[]);
|
|
5354
5559
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SetupTenting;
|
|
5355
5560
|
get sides(): string[];
|
|
@@ -5390,13 +5595,17 @@ interface SetupPropertyValues {
|
|
|
5390
5595
|
padDrill?: SetupPadDrill;
|
|
5391
5596
|
allowSoldermaskBridgesInFootprints?: SetupAllowSoldermaskBridgesInFootprints;
|
|
5392
5597
|
tenting?: SetupTenting;
|
|
5598
|
+
covering?: Covering;
|
|
5599
|
+
plugging?: Plugging;
|
|
5600
|
+
capping?: Capping;
|
|
5601
|
+
filling?: Filling;
|
|
5393
5602
|
auxAxisOrigin?: SetupAuxAxisOrigin;
|
|
5394
5603
|
gridOrigin?: SetupGridOrigin;
|
|
5395
5604
|
visibleElements?: SetupVisibleElements;
|
|
5396
5605
|
padToPasteClearanceValues?: SetupPadToPasteClearanceValues;
|
|
5397
5606
|
traceWidth?: SetupTraceWidth;
|
|
5398
5607
|
}
|
|
5399
|
-
type SetupProperty = Stackup | PcbPlotParams | SetupPadToMaskClearance | SetupSolderMaskMinWidth | SetupPadToPasteClearance | SetupPadToPasteClearanceRatio | SetupLastTraceWidth | SetupTraceClearance | SetupZoneClearance | SetupZone45Only | SetupTraceMin | SetupSegmentWidth | SetupEdgeWidth | SetupViaSize | SetupViaDrill | SetupViaMinSize | SetupViaMinDrill | SetupUviasAllowed | SetupUviaSize | SetupUviaDrill | SetupUviaMinSize | SetupUviaMinDrill | SetupPcbTextWidth | SetupPcbTextSize | SetupModEdgeWidth | SetupModTextSize | SetupModTextWidth | SetupPadSize | SetupPadDrill | SetupAllowSoldermaskBridgesInFootprints | SetupTenting | SetupAuxAxisOrigin | SetupGridOrigin | SetupVisibleElements | SetupPadToPasteClearanceValues | SetupTraceWidth;
|
|
5608
|
+
type SetupProperty = Stackup | PcbPlotParams | SetupPadToMaskClearance | SetupSolderMaskMinWidth | SetupPadToPasteClearance | SetupPadToPasteClearanceRatio | SetupLastTraceWidth | SetupTraceClearance | SetupZoneClearance | SetupZone45Only | SetupTraceMin | SetupSegmentWidth | SetupEdgeWidth | SetupViaSize | SetupViaDrill | SetupViaMinSize | SetupViaMinDrill | SetupUviasAllowed | SetupUviaSize | SetupUviaDrill | SetupUviaMinSize | SetupUviaMinDrill | SetupPcbTextWidth | SetupPcbTextSize | SetupModEdgeWidth | SetupModTextSize | SetupModTextWidth | SetupPadSize | SetupPadDrill | SetupAllowSoldermaskBridgesInFootprints | SetupTenting | Covering | Plugging | Capping | Filling | SetupAuxAxisOrigin | SetupGridOrigin | SetupVisibleElements | SetupPadToPasteClearanceValues | SetupTraceWidth;
|
|
5400
5609
|
|
|
5401
5610
|
declare class PcbGeneral extends SxClass {
|
|
5402
5611
|
static token: string;
|
|
@@ -5509,12 +5718,12 @@ declare class ViaNet extends SxClass {
|
|
|
5509
5718
|
static token: string;
|
|
5510
5719
|
static parentToken: string;
|
|
5511
5720
|
token: string;
|
|
5512
|
-
private _id
|
|
5721
|
+
private _id?;
|
|
5513
5722
|
private _name?;
|
|
5514
|
-
constructor(
|
|
5723
|
+
constructor(idOrName: number | string, name?: string);
|
|
5515
5724
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ViaNet;
|
|
5516
|
-
get id(): number;
|
|
5517
|
-
set id(value: number);
|
|
5725
|
+
get id(): number | undefined;
|
|
5726
|
+
set id(value: number | undefined);
|
|
5518
5727
|
get name(): string | undefined;
|
|
5519
5728
|
set name(value: string | undefined);
|
|
5520
5729
|
getChildren(): SxClass[];
|
|
@@ -5535,6 +5744,10 @@ interface ViaConstructorParams {
|
|
|
5535
5744
|
uuid?: Uuid | string;
|
|
5536
5745
|
tstamp?: Tstamp | string;
|
|
5537
5746
|
teardrops?: PadTeardrops;
|
|
5747
|
+
capping?: string | Capping;
|
|
5748
|
+
covering?: Covering;
|
|
5749
|
+
plugging?: Plugging;
|
|
5750
|
+
filling?: string | Filling;
|
|
5538
5751
|
}
|
|
5539
5752
|
declare class Via extends SxClass {
|
|
5540
5753
|
static token: string;
|
|
@@ -5552,6 +5765,10 @@ declare class Via extends SxClass {
|
|
|
5552
5765
|
private _sxUuid?;
|
|
5553
5766
|
private _sxTstamp?;
|
|
5554
5767
|
private _sxTeardrops?;
|
|
5768
|
+
private _sxCapping?;
|
|
5769
|
+
private _sxCovering?;
|
|
5770
|
+
private _sxPlugging?;
|
|
5771
|
+
private _sxFilling?;
|
|
5555
5772
|
constructor(params?: ViaConstructorParams);
|
|
5556
5773
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Via;
|
|
5557
5774
|
private consumeBareToken;
|
|
@@ -5581,6 +5798,14 @@ declare class Via extends SxClass {
|
|
|
5581
5798
|
set uuid(value: Uuid | string | undefined);
|
|
5582
5799
|
get teardrops(): PadTeardrops | undefined;
|
|
5583
5800
|
set teardrops(value: PadTeardrops | undefined);
|
|
5801
|
+
get capping(): string | undefined;
|
|
5802
|
+
set capping(value: string | Capping | undefined);
|
|
5803
|
+
get covering(): Covering | undefined;
|
|
5804
|
+
set covering(value: Covering | undefined);
|
|
5805
|
+
get plugging(): Plugging | undefined;
|
|
5806
|
+
set plugging(value: Plugging | undefined);
|
|
5807
|
+
get filling(): string | undefined;
|
|
5808
|
+
set filling(value: string | Filling | undefined);
|
|
5584
5809
|
get tstamp(): Tstamp | undefined;
|
|
5585
5810
|
set tstamp(value: Tstamp | string | undefined);
|
|
5586
5811
|
getChildren(): SxClass[];
|
|
@@ -5707,4 +5932,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
|
|
|
5707
5932
|
declare const parseKicadPcb: (sexpr: string) => KicadPcb;
|
|
5708
5933
|
declare const parseKicadMod: (sexpr: string) => Footprint;
|
|
5709
5934
|
|
|
5710
|
-
export { At, type AtInput, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Color, Dimension, DimensionFormat, DimensionStyle, Dnp, EmbeddedFile, EmbeddedFileChecksum, type EmbeddedFileConstructorParams, EmbeddedFileData, EmbeddedFileName, EmbeddedFileType, EmbeddedFiles, type EmbeddedFilesConstructorParams, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintGenerator, FootprintGeneratorVersion, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintVersion, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, FpCircleNet, FpLine, type FpLineConstructorParams, FpLineEnd, FpLineNet, FpLineStart, FpPoly, type FpPolyConstructorParams, FpPolyFill, FpPolyLocked, FpRect, type FpRectConstructorParams, FpRectEnd, FpRectFill, FpRectNet, FpRectStart, FpText, FpTextBox, FpTextBoxAngle, type FpTextBoxConstructorParams, FpTextBoxEnd, FpTextBoxStart, type FpTextConstructorParams, type FpTextType, Generated, GlobalLabel, type GlobalLabelConstructorParams, type GlobalLabelShape, GrArc, type GrArcConstructorParams, GrArcEnd, GrArcMid, type GrArcPoint, GrArcStart, GrCircle, GrCircleCenter, type GrCircleConstructorParams, GrCircleEnd, GrCircleLocked, type GrCirclePoint, GrCurve, type GrCurveConstructorParams, GrLine, GrLineAngle, type GrLineConstructorParams, GrLineEnd, GrLineLocked, type GrLinePoint, GrLineStart, GrPoly, type GrPolyConstructorParams, GrPolyFill, GrPolyNet, GrRect, type GrRectConstructorParams, GrRectEnd, GrRectFill, GrRectLocked, GrRectStart, GrText, type GrTextConstructorParams, type GrTextPosition, GrTextRenderCache, GrTextRenderCachePolygon, Group, type GroupConstructorParams, GroupLocked, GroupMembers, Image, type ImageConstructorParams, ImageData, ImageScale, InBom, Junction, type JunctionConstructorParams, JunctionDiameter, KicadPcb, type KicadPcbConstructorParams, KicadSch, type KicadSchConstructorParams, KicadSchGenerator, KicadSchGeneratorVersion, KicadSchVersion, KicadSymbolLib, type KicadSymbolLibConstructorParams, KicadSymbolLibGenerator, KicadSymbolLibGeneratorVersion, KicadSymbolLibVersion, Label, type LabelConstructorParams, Layer, Layers, LibSymbols, Mirror, type ModelVector, NoConnect, type NoConnectConstructorParams, OnBoard, PadChamfer, PadChamferRatio, PadClearance, PadDieLength, PadDrill, PadDrillOffset, PadLayers, type PadLayersInput, PadNet, PadOptions, type PadOptionsAnchorShape, type PadOptionsClearanceType, PadPinFunction, PadPinType, PadPrimitiveGrArc, type PadPrimitiveGrArcConstructorParams, PadPrimitiveGrCircle, type PadPrimitiveGrCircleConstructorParams, PadPrimitiveGrCircleFill, PadPrimitiveGrLine, PadPrimitiveGrPoly, PadPrimitives, PadProperty, PadRectDelta, PadRoundrectRratio, PadSize, type PadSizeInput, PadSolderMaskMargin, PadSolderPasteMargin, PadSolderPasteMarginRatio, PadTeardrops, PadThermalBridgeAngle, PadThermalGap, PadThermalWidth, PadZoneConnect, PadZoneLayerConnections, Paper, PcbArc, type PcbArcConstructorParams, type PcbArcPoint, PcbGeneral, PcbGeneralLegacyTeardrops, PcbGeneralThickness, PcbGenerator, PcbGeneratorVersion, PcbLayerDefinition, PcbLayers, PcbNet, PcbPlotParams, PcbVersion, PlotParamCreateGerberJobFile, PlotParamCrossoutDnpOnFab, PlotParamDashedLineDashRatio, PlotParamDashedLineGapRatio, PlotParamDisableApertMacros, PlotParamDrillShape, PlotParamDxfImperialUnits, PlotParamDxfPolygonMode, PlotParamDxfUsePcbnewFont, PlotParamExcludeEdgeLayer, PlotParamHideDnpOnFab, PlotParamHpglPenDiameter, PlotParamHpglPenNumber, PlotParamHpglPenOverlay, PlotParamHpglPenSpeed, PlotParamLayerSelection, PlotParamLineWidth, PlotParamMirror, PlotParamMode, PlotParamOutputDirectory, PlotParamOutputFormat, PlotParamPadOnSilk, PlotParamPdfBackFpPropertyPopups, PlotParamPdfFrontFpPropertyPopups, PlotParamPdfMetadata, PlotParamPdfSingleDocument, PlotParamPlotBlackAndWhite, PlotParamPlotFpText, PlotParamPlotFrameRef, PlotParamPlotInvisible, PlotParamPlotInvisibleText, PlotParamPlotOnAllLayers, PlotParamPlotOnAllLayersSelection, PlotParamPlotOtherText, PlotParamPlotPadNumbers, PlotParamPlotReference, PlotParamPlotValue, PlotParamProperty, PlotParamPsA4Output, PlotParamPsNegative, PlotParamScaleSelection, PlotParamSketchDnpOnFab, PlotParamSketchPadsOnFab, PlotParamSubtractMaskFromSilk, PlotParamSvgPrecision, PlotParamUseAuxOrigin, PlotParamUseGerberAdvancedAttributes, PlotParamUseGerberAttributes, PlotParamUseGerberExtensions, PlotParamViaOnMask, Polyline, type PolylineConstructorParams, Property, type PropertyConstructorParams, PropertyHide, PropertyUnlocked, Pts, PtsArc, PtsArcEnd, PtsArcMid, PtsArcStart, type RGBAColor, RenderCache, SchematicPolyline, SchematicRectangle, SchematicSymbol, type SchematicSymbolConstructorParams, SchematicText, SchematicTextBox, type SchematicTextConstructorParams, Segment, type SegmentConstructorParams, SegmentEnd, SegmentLocked, SegmentNet, SegmentStart, Setup, SetupAllowSoldermaskBridgesInFootprints, SetupAuxAxisOrigin, SetupEdgeWidth, SetupGridOrigin, SetupLastTraceWidth, SetupModEdgeWidth, SetupModTextSize, SetupModTextWidth, SetupPadDrill, SetupPadSize, SetupPadToMaskClearance, SetupPadToPasteClearance, SetupPadToPasteClearanceRatio, SetupPadToPasteClearanceValues, SetupPcbTextSize, SetupPcbTextWidth, type SetupProperty, type SetupPropertyValues, SetupSegmentWidth, SetupSolderMaskMinWidth, SetupTenting, SetupTraceClearance, SetupTraceMin, SetupTraceWidth, SetupUviaDrill, SetupUviaMinDrill, SetupUviaMinSize, SetupUviaSize, SetupUviasAllowed, SetupViaDrill, SetupViaMinDrill, SetupViaMinSize, SetupViaSize, SetupVisibleElements, SetupZone45Only, SetupZoneClearance, Sheet, type SheetConstructorParams, SheetFill, SheetInstancePage, SheetInstancePath, SheetInstances, SheetInstancesForSheet, SheetInstancesProject, SheetInstancesRoot, SheetInstancesRootPage, SheetInstancesRootPath, SheetPin, type SheetPinElectricalType, SheetProperty, SheetSize, Stackup, StackupCastellatedPads, StackupCopperFinish, StackupDielectricConstraints, StackupEdgeConnector, StackupEdgePlating, StackupLayer, StackupLayerColor, StackupLayerEpsilonR, StackupLayerLossTangent, StackupLayerMaterial, StackupLayerThickness, StackupLayerType, type StandardPaperSize, Stroke, type StrokeProperty, StrokeType, type StrokeTypeString, SxClass, SymbolArc, SymbolArcEnd, SymbolArcFill, SymbolArcMid, SymbolArcStart, SymbolCircle, SymbolCircleCenter, SymbolCircleFill, SymbolCircleRadius, SymbolDuplicatePinNumbersAreJumpers, SymbolFillType, SymbolInstancePath, SymbolInstanceReference, SymbolInstanceUnit, SymbolInstances, SymbolInstancesProject, SymbolLibId, SymbolLibName, SymbolPin, SymbolPinLength, SymbolPinName, SymbolPinNames, SymbolPinNamesHide, SymbolPinNamesOffset, SymbolPinNumber, SymbolPinNumbers, SymbolPinNumbersHide, SymbolPolyline, SymbolPolylineFill, type SymbolPolylineFillLike, SymbolPower, SymbolProperty, SymbolPropertyId, SymbolRectangle, SymbolRectangleEnd, SymbolRectangleFill, SymbolRectangleStart, SymbolText, SymbolTextBox, SymbolUnit, Target, TextBoxFill, TextBoxSize, TextEffects, type TextEffectsConstructorParams, TextEffectsFont, TextEffectsFontBold, TextEffectsFontFace, TextEffectsFontItalic, TextEffectsFontLineSpacing, type TextEffectsFontProperty, TextEffectsFontSize, TextEffectsFontThickness, TextEffectsJustify, type TextEffectsProperty, TitleBlock, TitleBlockComment, TitleBlockCompany, type TitleBlockConstructorParams, TitleBlockDate, TitleBlockRevision, TitleBlockTitle, Tstamp, Unit, type UnitString, Uuid, Via, type ViaConstructorParams, ViaNet, Width, Wire, type WireConstructorParams, Xy, Zone, parseKicadMod, parseKicadPcb, parseKicadSch, parseKicadSexpr };
|
|
5935
|
+
export { At, type AtInput, Back, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Capping, Color, Covering, Dimension, DimensionFormat, DimensionStyle, Dnp, EmbeddedFile, EmbeddedFileChecksum, type EmbeddedFileConstructorParams, EmbeddedFileData, EmbeddedFileName, EmbeddedFileType, EmbeddedFiles, type EmbeddedFilesConstructorParams, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Filling, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintDuplicatePadNumbersAreJumpers, FootprintGenerator, FootprintGeneratorVersion, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPoint, FootprintPointSize, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintUnit, FootprintUnitName, FootprintUnitPins, FootprintUnits, FootprintVersion, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, FpCircleNet, FpLine, type FpLineConstructorParams, FpLineEnd, FpLineNet, FpLineStart, FpPoly, type FpPolyConstructorParams, FpPolyFill, FpPolyLocked, FpRect, type FpRectConstructorParams, FpRectEnd, FpRectFill, FpRectNet, FpRectStart, FpText, FpTextBox, FpTextBoxAngle, type FpTextBoxConstructorParams, FpTextBoxEnd, FpTextBoxStart, type FpTextConstructorParams, type FpTextType, Front, Generated, GlobalLabel, type GlobalLabelConstructorParams, type GlobalLabelShape, GrArc, type GrArcConstructorParams, GrArcEnd, GrArcMid, type GrArcPoint, GrArcStart, GrCircle, GrCircleCenter, type GrCircleConstructorParams, GrCircleEnd, GrCircleLocked, type GrCirclePoint, GrCurve, type GrCurveConstructorParams, GrLine, GrLineAngle, type GrLineConstructorParams, GrLineEnd, GrLineLocked, type GrLinePoint, GrLineStart, GrPoly, type GrPolyConstructorParams, GrPolyFill, GrPolyNet, GrRect, type GrRectConstructorParams, GrRectEnd, GrRectFill, GrRectLocked, GrRectStart, GrText, type GrTextConstructorParams, type GrTextPosition, GrTextRenderCache, GrTextRenderCachePolygon, Group, type GroupConstructorParams, GroupLocked, GroupMembers, Image, type ImageConstructorParams, ImageData, ImageScale, InBom, InPosFiles, Junction, type JunctionConstructorParams, JunctionDiameter, KicadPcb, type KicadPcbConstructorParams, KicadSch, type KicadSchConstructorParams, KicadSchGenerator, KicadSchGeneratorVersion, KicadSchVersion, KicadSymbolLib, type KicadSymbolLibConstructorParams, KicadSymbolLibGenerator, KicadSymbolLibGeneratorVersion, KicadSymbolLibVersion, Label, type LabelConstructorParams, Layer, Layers, LibSymbols, Mirror, type ModelVector, NoConnect, type NoConnectConstructorParams, OnBoard, PadChamfer, PadChamferRatio, PadClearance, PadDieLength, PadDrill, PadDrillOffset, PadLayers, type PadLayersInput, PadNet, PadOptions, type PadOptionsAnchorShape, type PadOptionsClearanceType, PadPinFunction, PadPinType, PadPrimitiveGrArc, type PadPrimitiveGrArcConstructorParams, PadPrimitiveGrCircle, type PadPrimitiveGrCircleConstructorParams, PadPrimitiveGrCircleFill, PadPrimitiveGrLine, PadPrimitiveGrPoly, PadPrimitives, PadProperty, PadRectDelta, PadRoundrectRratio, PadSize, type PadSizeInput, PadSolderMaskMargin, PadSolderPasteMargin, PadSolderPasteMarginRatio, PadTeardrops, PadThermalBridgeAngle, PadThermalGap, PadThermalWidth, PadZoneConnect, PadZoneLayerConnections, Paper, PcbArc, type PcbArcConstructorParams, type PcbArcPoint, PcbGeneral, PcbGeneralLegacyTeardrops, PcbGeneralThickness, PcbGenerator, PcbGeneratorVersion, PcbLayerDefinition, PcbLayers, PcbNet, PcbPlotParams, PcbVersion, PlotParamCreateGerberJobFile, PlotParamCrossoutDnpOnFab, PlotParamDashedLineDashRatio, PlotParamDashedLineGapRatio, PlotParamDisableApertMacros, PlotParamDrillShape, PlotParamDxfImperialUnits, PlotParamDxfPolygonMode, PlotParamDxfUsePcbnewFont, PlotParamExcludeEdgeLayer, PlotParamHideDnpOnFab, PlotParamHpglPenDiameter, PlotParamHpglPenNumber, PlotParamHpglPenOverlay, PlotParamHpglPenSpeed, PlotParamLayerSelection, PlotParamLineWidth, PlotParamMirror, PlotParamMode, PlotParamOutputDirectory, PlotParamOutputFormat, PlotParamPadOnSilk, PlotParamPdfBackFpPropertyPopups, PlotParamPdfFrontFpPropertyPopups, PlotParamPdfMetadata, PlotParamPdfSingleDocument, PlotParamPlotBlackAndWhite, PlotParamPlotFpText, PlotParamPlotFrameRef, PlotParamPlotInvisible, PlotParamPlotInvisibleText, PlotParamPlotOnAllLayers, PlotParamPlotOnAllLayersSelection, PlotParamPlotOtherText, PlotParamPlotPadNumbers, PlotParamPlotReference, PlotParamPlotValue, PlotParamProperty, PlotParamPsA4Output, PlotParamPsNegative, PlotParamScaleSelection, PlotParamSketchDnpOnFab, PlotParamSketchPadsOnFab, PlotParamSubtractMaskFromSilk, PlotParamSvgPrecision, PlotParamUseAuxOrigin, PlotParamUseGerberAdvancedAttributes, PlotParamUseGerberAttributes, PlotParamUseGerberExtensions, PlotParamViaOnMask, Plugging, Polyline, type PolylineConstructorParams, Property, type PropertyConstructorParams, PropertyDoNotAutoplace, PropertyHide, PropertyShowName, PropertyUnlocked, Pts, PtsArc, PtsArcEnd, PtsArcMid, PtsArcStart, type RGBAColor, RenderCache, SchematicPolyline, SchematicRectangle, SchematicSymbol, type SchematicSymbolConstructorParams, SchematicText, SchematicTextBox, type SchematicTextConstructorParams, Segment, type SegmentConstructorParams, SegmentEnd, SegmentLocked, SegmentNet, SegmentStart, Setup, SetupAllowSoldermaskBridgesInFootprints, SetupAuxAxisOrigin, SetupEdgeWidth, SetupGridOrigin, SetupLastTraceWidth, SetupModEdgeWidth, SetupModTextSize, SetupModTextWidth, SetupPadDrill, SetupPadSize, SetupPadToMaskClearance, SetupPadToPasteClearance, SetupPadToPasteClearanceRatio, SetupPadToPasteClearanceValues, SetupPcbTextSize, SetupPcbTextWidth, type SetupProperty, type SetupPropertyValues, SetupSegmentWidth, SetupSolderMaskMinWidth, SetupTenting, SetupTraceClearance, SetupTraceMin, SetupTraceWidth, SetupUviaDrill, SetupUviaMinDrill, SetupUviaMinSize, SetupUviaSize, SetupUviasAllowed, SetupViaDrill, SetupViaMinDrill, SetupViaMinSize, SetupViaSize, SetupVisibleElements, SetupZone45Only, SetupZoneClearance, Sheet, type SheetConstructorParams, SheetFill, SheetInstancePage, SheetInstancePath, SheetInstances, SheetInstancesForSheet, SheetInstancesProject, SheetInstancesRoot, SheetInstancesRootPage, SheetInstancesRootPath, SheetPin, type SheetPinElectricalType, SheetProperty, SheetSize, Stackup, StackupCastellatedPads, StackupCopperFinish, StackupDielectricConstraints, StackupEdgeConnector, StackupEdgePlating, StackupLayer, StackupLayerColor, StackupLayerEpsilonR, StackupLayerLossTangent, StackupLayerMaterial, StackupLayerThickness, StackupLayerType, type StandardPaperSize, Stroke, type StrokeProperty, StrokeType, type StrokeTypeString, SxClass, SymbolArc, SymbolArcEnd, SymbolArcFill, SymbolArcMid, SymbolArcStart, SymbolBodyStyle, SymbolBodyStyles, SymbolCircle, SymbolCircleCenter, SymbolCircleFill, SymbolCircleRadius, SymbolDuplicatePinNumbersAreJumpers, SymbolFillType, SymbolInstancePath, SymbolInstanceReference, SymbolInstanceUnit, SymbolInstances, SymbolInstancesProject, SymbolLibId, SymbolLibName, SymbolPin, SymbolPinLength, SymbolPinName, SymbolPinNames, SymbolPinNamesHide, SymbolPinNamesOffset, SymbolPinNumber, SymbolPinNumbers, SymbolPinNumbersHide, SymbolPolyline, SymbolPolylineFill, type SymbolPolylineFillLike, SymbolPower, SymbolProperty, SymbolPropertyId, SymbolRectangle, SymbolRectangleEnd, SymbolRectangleFill, SymbolRectangleStart, SymbolText, SymbolTextBox, SymbolUnit, Target, TextBoxFill, TextBoxSize, TextEffects, type TextEffectsConstructorParams, TextEffectsFont, TextEffectsFontBold, TextEffectsFontFace, TextEffectsFontItalic, TextEffectsFontLineSpacing, type TextEffectsFontProperty, TextEffectsFontSize, TextEffectsFontThickness, TextEffectsJustify, type TextEffectsProperty, TitleBlock, TitleBlockComment, TitleBlockCompany, type TitleBlockConstructorParams, TitleBlockDate, TitleBlockRevision, TitleBlockTitle, Tstamp, Unit, type UnitString, Uuid, Via, type ViaConstructorParams, ViaNet, Width, Wire, type WireConstructorParams, Xy, Zone, parseKicadMod, parseKicadPcb, parseKicadSch, parseKicadSexpr };
|