kicadts 0.0.30 → 0.0.32

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +334 -60
  2. package/dist/index.js +990 -120
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -609,6 +609,14 @@ declare class KicadSymbolLibGenerator extends SxPrimitiveString {
609
609
  getString(): string;
610
610
  }
611
611
 
612
+ declare class KicadSymbolLibGeneratorVersion extends SxPrimitiveString {
613
+ static token: string;
614
+ static parentToken: string;
615
+ token: string;
616
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): KicadSymbolLibGeneratorVersion;
617
+ getString(): string;
618
+ }
619
+
612
620
  declare class KicadSymbolLibVersion extends SxPrimitiveNumber {
613
621
  static token: string;
614
622
  static parentToken: string;
@@ -643,6 +651,33 @@ declare class FieldsAutoplaced extends SxPrimitiveBoolean {
643
651
  token: string;
644
652
  }
645
653
 
654
+ declare class SymbolLibName extends SxPrimitiveString {
655
+ static token: string;
656
+ static parentToken: string;
657
+ token: string;
658
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SymbolLibName;
659
+ getString(): string;
660
+ }
661
+
662
+ declare class SymbolTextBox extends SxClass {
663
+ static token: string;
664
+ static parentToken: string;
665
+ token: string;
666
+ private _text;
667
+ private _sxExcludeFromSim?;
668
+ private _sxAt?;
669
+ private _sxSize?;
670
+ private _sxStroke?;
671
+ private _sxFill?;
672
+ private _sxEffects?;
673
+ private _sxUuid?;
674
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SymbolTextBox;
675
+ get text(): string;
676
+ set text(value: string);
677
+ getChildren(): SxClass[];
678
+ getString(): string;
679
+ }
680
+
646
681
  interface SymbolPolylineFillLike extends SxClass {
647
682
  type?: string;
648
683
  }
@@ -815,6 +850,7 @@ declare class SymbolCircleRadius extends SxPrimitiveNumber {
815
850
  }
816
851
  declare abstract class SymbolFillBase extends SxClass {
817
852
  protected _sxType?: SymbolFillType;
853
+ protected _sxColor?: Color;
818
854
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SymbolFillBase;
819
855
  get type(): string | undefined;
820
856
  set type(value: string | undefined);
@@ -911,6 +947,7 @@ declare class SymbolPower extends SxClass {
911
947
  }
912
948
  interface SchematicSymbolConstructorParams {
913
949
  libraryId?: string;
950
+ libraryName?: string | SymbolLibName;
914
951
  at?: AtInput;
915
952
  mirror?: string | Mirror;
916
953
  unit?: number | SymbolUnit;
@@ -931,12 +968,14 @@ interface SchematicSymbolConstructorParams {
931
968
  circles?: SymbolCircle[];
932
969
  arcs?: SymbolArc[];
933
970
  texts?: SymbolText[];
971
+ textBoxes?: SymbolTextBox[];
934
972
  embeddedFonts?: EmbeddedFonts;
935
973
  instances?: SymbolInstances;
936
974
  }
937
975
  declare class SchematicSymbol extends SxClass {
938
976
  static token: string;
939
977
  token: string;
978
+ private _sxLibName?;
940
979
  private _sxLibId?;
941
980
  _sxAt?: At;
942
981
  _sxMirror?: Mirror;
@@ -958,6 +997,7 @@ declare class SchematicSymbol extends SxClass {
958
997
  circles: SymbolCircle[];
959
998
  arcs: SymbolArc[];
960
999
  texts: SymbolText[];
1000
+ textBoxes: SymbolTextBox[];
961
1001
  _sxPower?: SymbolPower;
962
1002
  _sxEmbeddedFonts?: EmbeddedFonts;
963
1003
  _sxInstances?: SymbolInstances;
@@ -965,6 +1005,8 @@ declare class SchematicSymbol extends SxClass {
965
1005
  constructor(params?: SchematicSymbolConstructorParams);
966
1006
  get libraryId(): string | undefined;
967
1007
  set libraryId(value: string | SymbolLibId | undefined);
1008
+ get libraryName(): string | undefined;
1009
+ set libraryName(value: string | SymbolLibName | undefined);
968
1010
  get at(): At | undefined;
969
1011
  set at(value: AtInput | undefined);
970
1012
  get mirror(): string | undefined;
@@ -1149,6 +1191,7 @@ declare class SymbolInstanceUnit extends SxPrimitiveNumber {
1149
1191
  interface KicadSymbolLibConstructorParams {
1150
1192
  version?: number | KicadSymbolLibVersion;
1151
1193
  generator?: string | KicadSymbolLibGenerator;
1194
+ generatorVersion?: string | KicadSymbolLibGeneratorVersion;
1152
1195
  symbols?: SchematicSymbol[];
1153
1196
  }
1154
1197
  declare class KicadSymbolLib extends SxClass {
@@ -1156,6 +1199,7 @@ declare class KicadSymbolLib extends SxClass {
1156
1199
  token: string;
1157
1200
  private _sxVersion?;
1158
1201
  private _sxGenerator?;
1202
+ private _sxGeneratorVersion?;
1159
1203
  private _symbols;
1160
1204
  constructor(params?: KicadSymbolLibConstructorParams);
1161
1205
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): KicadSymbolLib;
@@ -1163,6 +1207,8 @@ declare class KicadSymbolLib extends SxClass {
1163
1207
  set version(value: number | undefined);
1164
1208
  get generator(): string | undefined;
1165
1209
  set generator(value: string | undefined);
1210
+ get generatorVersion(): string | undefined;
1211
+ set generatorVersion(value: string | undefined);
1166
1212
  get symbols(): SchematicSymbol[];
1167
1213
  set symbols(value: SchematicSymbol[]);
1168
1214
  getChildren(): SxClass[];
@@ -1488,6 +1534,25 @@ declare class SchematicText extends SxClass {
1488
1534
  getString(): string;
1489
1535
  }
1490
1536
 
1537
+ declare class SchematicTextBox extends SymbolTextBox {
1538
+ static token: string;
1539
+ static parentToken: string;
1540
+ token: string;
1541
+ }
1542
+
1543
+ declare class SchematicRectangle extends SxClass {
1544
+ static token: string;
1545
+ static parentToken: string;
1546
+ token: string;
1547
+ private _sxStart?;
1548
+ private _sxEnd?;
1549
+ private _sxStroke?;
1550
+ private _sxFill?;
1551
+ private _sxUuid?;
1552
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SchematicRectangle;
1553
+ getChildren(): SxClass[];
1554
+ }
1555
+
1491
1556
  declare class SheetInstancesRoot extends SxClass {
1492
1557
  static token: string;
1493
1558
  token: string;
@@ -1738,6 +1803,8 @@ interface KicadSchConstructorParams {
1738
1803
  junctions?: Junction[];
1739
1804
  noConnects?: NoConnect[];
1740
1805
  polylines?: Polyline[];
1806
+ rectangles?: SchematicRectangle[];
1807
+ textBoxes?: SchematicTextBox[];
1741
1808
  }
1742
1809
  declare class KicadSch extends SxClass {
1743
1810
  static token: string;
@@ -1762,6 +1829,8 @@ declare class KicadSch extends SxClass {
1762
1829
  private _junctions;
1763
1830
  private _noConnects;
1764
1831
  private _polylines;
1832
+ private _rectangles;
1833
+ private _textBoxes;
1765
1834
  constructor(params?: KicadSchConstructorParams);
1766
1835
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): KicadSch;
1767
1836
  get version(): number | undefined;
@@ -1804,6 +1873,10 @@ declare class KicadSch extends SxClass {
1804
1873
  set noConnects(value: NoConnect[]);
1805
1874
  get polylines(): Polyline[];
1806
1875
  set polylines(value: Polyline[]);
1876
+ get rectangles(): SchematicRectangle[];
1877
+ set rectangles(value: SchematicRectangle[]);
1878
+ get textBoxes(): SchematicTextBox[];
1879
+ set textBoxes(value: SchematicTextBox[]);
1807
1880
  getChildren(): SxClass[];
1808
1881
  }
1809
1882
 
@@ -2083,14 +2156,14 @@ declare class PadNet extends SxClass {
2083
2156
  static token: string;
2084
2157
  static parentToken: string;
2085
2158
  token: string;
2086
- private _id;
2087
- private _name;
2088
- constructor(id: number, name: string);
2159
+ private _id?;
2160
+ private _name?;
2161
+ constructor(idOrName: number | string, name?: string);
2089
2162
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PadNet;
2090
- get id(): number;
2091
- set id(value: number);
2092
- get name(): string;
2093
- set name(value: string);
2163
+ get id(): number | undefined;
2164
+ set id(value: number | undefined);
2165
+ get name(): string | undefined;
2166
+ set name(value: string | undefined);
2094
2167
  getChildren(): SxClass[];
2095
2168
  getString(): string;
2096
2169
  }
@@ -3447,6 +3520,55 @@ declare class FootprintPlaced extends SxPrimitiveBoolean {
3447
3520
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintPlaced;
3448
3521
  }
3449
3522
 
3523
+ declare class FootprintDuplicatePadNumbersAreJumpers extends SxPrimitiveString {
3524
+ static token: string;
3525
+ static parentToken: string;
3526
+ token: string;
3527
+ }
3528
+
3529
+ declare class FootprintPoint extends SxClass {
3530
+ static token: string;
3531
+ static parentToken: string;
3532
+ token: string;
3533
+ private _sxAt?;
3534
+ private _sxSize?;
3535
+ private _sxLayer?;
3536
+ private _sxUuid?;
3537
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintPoint;
3538
+ getChildren(): SxClass[];
3539
+ }
3540
+
3541
+ declare class FootprintUnit extends SxClass {
3542
+ static token: string;
3543
+ static parentToken: string;
3544
+ token: string;
3545
+ private _sxName?;
3546
+ private _sxPins?;
3547
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintUnit;
3548
+ getChildren(): SxClass[];
3549
+ }
3550
+
3551
+ declare class FootprintUnits extends SxClass {
3552
+ static token: string;
3553
+ static parentToken: string;
3554
+ token: string;
3555
+ private _units;
3556
+ constructor(units?: FootprintUnit[]);
3557
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintUnits;
3558
+ getChildren(): SxClass[];
3559
+ }
3560
+
3561
+ declare class Zone extends SxClass {
3562
+ static token: string;
3563
+ token: string;
3564
+ private _rawChildren;
3565
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Zone;
3566
+ get rawChildren(): PrimitiveSExpr[];
3567
+ set rawChildren(children: PrimitiveSExpr[]);
3568
+ getChildren(): SxClass[];
3569
+ getString(): string;
3570
+ }
3571
+
3450
3572
  interface FootprintConstructorParams {
3451
3573
  libraryLink?: string;
3452
3574
  version?: number | FootprintVersion;
@@ -3475,6 +3597,8 @@ interface FootprintConstructorParams {
3475
3597
  netTiePadGroups?: FootprintNetTiePadGroups;
3476
3598
  sheetname?: string | FootprintSheetname;
3477
3599
  sheetfile?: string | FootprintSheetfile;
3600
+ units?: FootprintUnits;
3601
+ duplicatePadNumbersAreJumpers?: string | FootprintDuplicatePadNumbersAreJumpers;
3478
3602
  embeddedFonts?: EmbeddedFonts;
3479
3603
  embeddedFiles?: EmbeddedFiles;
3480
3604
  properties?: Property[];
@@ -3485,8 +3609,10 @@ interface FootprintConstructorParams {
3485
3609
  fpCircles?: FpCircle[];
3486
3610
  fpArcs?: FpArc[];
3487
3611
  fpPolys?: FpPoly[];
3612
+ points?: FootprintPoint[];
3488
3613
  pads?: FootprintPad[];
3489
3614
  models?: FootprintModel[];
3615
+ zones?: Zone[];
3490
3616
  }
3491
3617
  declare class Footprint extends SxClass {
3492
3618
  static token: string;
@@ -3520,6 +3646,8 @@ declare class Footprint extends SxClass {
3520
3646
  private _sxNetTiePadGroups?;
3521
3647
  private _sxSheetname?;
3522
3648
  private _sxSheetfile?;
3649
+ private _sxUnits?;
3650
+ private _sxDuplicatePadNumbersAreJumpers?;
3523
3651
  private _sxEmbeddedFonts?;
3524
3652
  private _sxEmbeddedFiles?;
3525
3653
  private _properties;
@@ -3530,8 +3658,10 @@ declare class Footprint extends SxClass {
3530
3658
  private _fpCircles;
3531
3659
  private _fpArcs;
3532
3660
  private _fpPolys;
3661
+ private _points;
3533
3662
  private _fpPads;
3534
3663
  private _models;
3664
+ private _zones;
3535
3665
  constructor(params?: FootprintConstructorParams);
3536
3666
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Footprint;
3537
3667
  get libraryLink(): string | undefined;
@@ -3590,6 +3720,10 @@ declare class Footprint extends SxClass {
3590
3720
  set sheetname(value: string | FootprintSheetname | undefined);
3591
3721
  get sheetfile(): string | undefined;
3592
3722
  set sheetfile(value: string | FootprintSheetfile | undefined);
3723
+ get units(): FootprintUnits | undefined;
3724
+ set units(value: FootprintUnits | undefined);
3725
+ get duplicatePadNumbersAreJumpers(): string | undefined;
3726
+ set duplicatePadNumbersAreJumpers(value: string | FootprintDuplicatePadNumbersAreJumpers | undefined);
3593
3727
  get embeddedFonts(): EmbeddedFonts | undefined;
3594
3728
  set embeddedFonts(value: EmbeddedFonts | undefined);
3595
3729
  get embeddedFiles(): EmbeddedFiles | undefined;
@@ -3610,10 +3744,42 @@ declare class Footprint extends SxClass {
3610
3744
  set fpArcs(value: FpArc[]);
3611
3745
  get fpPolys(): FpPoly[];
3612
3746
  set fpPolys(value: FpPoly[]);
3747
+ get points(): FootprintPoint[];
3748
+ set points(value: FootprintPoint[]);
3613
3749
  get fpPads(): FootprintPad[];
3614
3750
  set fpPads(value: FootprintPad[]);
3615
3751
  get models(): FootprintModel[];
3616
3752
  set models(value: FootprintModel[]);
3753
+ get zones(): Zone[];
3754
+ set zones(value: Zone[]);
3755
+ getChildren(): SxClass[];
3756
+ getString(): string;
3757
+ }
3758
+
3759
+ declare class FootprintPointSize extends SxPrimitiveNumber {
3760
+ static token: string;
3761
+ static parentToken: string;
3762
+ token: string;
3763
+ }
3764
+
3765
+ declare class FootprintUnitName extends SxClass {
3766
+ static token: string;
3767
+ static parentToken: string;
3768
+ token: string;
3769
+ value: string;
3770
+ constructor(value: string);
3771
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintUnitName;
3772
+ getChildren(): SxClass[];
3773
+ getString(): string;
3774
+ }
3775
+
3776
+ declare class FootprintUnitPins extends SxClass {
3777
+ static token: string;
3778
+ static parentToken: string;
3779
+ token: string;
3780
+ values: string[];
3781
+ constructor(values?: string[]);
3782
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintUnitPins;
3617
3783
  getChildren(): SxClass[];
3618
3784
  getString(): string;
3619
3785
  }
@@ -4116,6 +4282,16 @@ declare class GrTextRenderCachePolygon extends SxClass {
4116
4282
  getString(): string;
4117
4283
  }
4118
4284
 
4285
+ declare class GrPolyNet extends SxClass {
4286
+ id: number;
4287
+ static token: string;
4288
+ static parentToken: string;
4289
+ token: string;
4290
+ constructor(id: number);
4291
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrPolyNet;
4292
+ getString(): string;
4293
+ }
4294
+
4119
4295
  declare class GrPolyFill extends SxClass {
4120
4296
  static token: string;
4121
4297
  static parentToken: string;
@@ -4134,6 +4310,7 @@ interface GrPolyConstructorParams {
4134
4310
  width?: Width | number;
4135
4311
  stroke?: Stroke;
4136
4312
  fill?: GrPolyFill | boolean;
4313
+ net?: GrPolyNet | number;
4137
4314
  uuid?: Uuid | string;
4138
4315
  }
4139
4316
  declare class GrPoly extends SxClass {
@@ -4144,6 +4321,7 @@ declare class GrPoly extends SxClass {
4144
4321
  private _sxWidth?;
4145
4322
  private _sxStroke?;
4146
4323
  private _sxFill?;
4324
+ private _sxNet?;
4147
4325
  private _sxUuid?;
4148
4326
  constructor(params?: GrPolyConstructorParams);
4149
4327
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrPoly;
@@ -4166,6 +4344,8 @@ declare class GrPoly extends SxClass {
4166
4344
  get uuid(): string | undefined;
4167
4345
  set uuid(value: Uuid | string | undefined);
4168
4346
  get uuidClass(): Uuid | undefined;
4347
+ get net(): number | undefined;
4348
+ set net(value: GrPolyNet | number | undefined);
4169
4349
  getChildren(): SxClass[];
4170
4350
  }
4171
4351
 
@@ -4363,16 +4543,16 @@ declare class SegmentNet extends SxClass {
4363
4543
  static token: string;
4364
4544
  static parentToken: string;
4365
4545
  token: string;
4366
- private _id;
4546
+ private _id?;
4367
4547
  private _name?;
4368
- constructor(id: number, name?: string);
4548
+ constructor(idOrName: number | string, name?: string);
4369
4549
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SegmentNet;
4370
- get id(): number;
4371
- set id(value: number);
4550
+ get id(): number | undefined;
4551
+ set id(value: number | undefined);
4372
4552
  get name(): string | undefined;
4373
4553
  set name(value: string | undefined);
4374
4554
  toObject(): {
4375
- id: number;
4555
+ id?: number;
4376
4556
  name?: string;
4377
4557
  };
4378
4558
  getChildren(): SxClass[];
@@ -4480,17 +4660,6 @@ declare class SegmentLocked extends SxPrimitiveBoolean {
4480
4660
  getString(): string;
4481
4661
  }
4482
4662
 
4483
- declare class Zone extends SxClass {
4484
- static token: string;
4485
- token: string;
4486
- private _rawChildren;
4487
- static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Zone;
4488
- get rawChildren(): PrimitiveSExpr[];
4489
- set rawChildren(children: PrimitiveSExpr[]);
4490
- getChildren(): SxClass[];
4491
- getString(): string;
4492
- }
4493
-
4494
4663
  declare class Layers extends SxClass {
4495
4664
  static token: string;
4496
4665
  token: string;
@@ -4511,6 +4680,88 @@ declare class FpPolyLocked extends SxPrimitiveBoolean {
4511
4680
  getString(): string;
4512
4681
  }
4513
4682
 
4683
+ declare class TextBoxSize extends SxClass {
4684
+ width: number;
4685
+ height: number;
4686
+ static token: string;
4687
+ static parentToken: string;
4688
+ token: string;
4689
+ constructor(width: number, height: number);
4690
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): TextBoxSize;
4691
+ getString(): string;
4692
+ }
4693
+
4694
+ declare class TextBoxFill extends SxClass {
4695
+ static token: string;
4696
+ static parentToken: string;
4697
+ token: string;
4698
+ private _sxType?;
4699
+ private _sxColor?;
4700
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): TextBoxFill;
4701
+ getChildren(): SxClass[];
4702
+ }
4703
+
4704
+ declare abstract class SingleValueProperty<T extends string | number> extends SxClass {
4705
+ protected _value: T;
4706
+ protected quoteStringValue: boolean;
4707
+ constructor(value: T);
4708
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SingleValueProperty<string | number>;
4709
+ protected static parsePrimitiveValue(value: PrimitiveSExpr | undefined): string | number;
4710
+ get value(): T;
4711
+ set value(value: T);
4712
+ getChildren(): SxClass[];
4713
+ protected formatValue(): string;
4714
+ getString(): string;
4715
+ }
4716
+ declare abstract class NumericListProperty extends SxClass {
4717
+ protected _values: number[];
4718
+ constructor(values: number[]);
4719
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): NumericListProperty;
4720
+ get values(): number[];
4721
+ set values(values: number[]);
4722
+ getChildren(): SxClass[];
4723
+ getString(): string;
4724
+ }
4725
+ declare abstract class CoordinateProperty extends SxClass {
4726
+ protected _x: number;
4727
+ protected _y: number;
4728
+ constructor(x: number, y: number);
4729
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): CoordinateProperty;
4730
+ get x(): number;
4731
+ set x(value: number);
4732
+ get y(): number;
4733
+ set y(value: number);
4734
+ getChildren(): SxClass[];
4735
+ getString(): string;
4736
+ }
4737
+
4738
+ declare class Back extends SingleValueProperty<string> {
4739
+ static token: string;
4740
+ token: string;
4741
+ }
4742
+
4743
+ declare class Front extends SingleValueProperty<string> {
4744
+ static token: string;
4745
+ token: string;
4746
+ }
4747
+
4748
+ declare class Covering extends SxClass {
4749
+ static token: string;
4750
+ token: string;
4751
+ private _sxFront?;
4752
+ private _sxBack?;
4753
+ constructor(params?: {
4754
+ front?: Front | string;
4755
+ back?: Back | string;
4756
+ });
4757
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Covering;
4758
+ get front(): string | undefined;
4759
+ set front(value: Front | string | undefined);
4760
+ get back(): string | undefined;
4761
+ set back(value: Back | string | undefined);
4762
+ getChildren(): SxClass[];
4763
+ }
4764
+
4514
4765
  declare class PcbPlotParams extends SxClass {
4515
4766
  static token: string;
4516
4767
  static parentToken: string;
@@ -4622,38 +4873,21 @@ declare class PcbPlotParams extends SxClass {
4622
4873
  set outputdirectory(value: string | undefined);
4623
4874
  }
4624
4875
 
4625
- declare abstract class SingleValueProperty<T extends string | number> extends SxClass {
4626
- protected _value: T;
4627
- protected quoteStringValue: boolean;
4628
- constructor(value: T);
4629
- static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SingleValueProperty<string | number>;
4630
- protected static parsePrimitiveValue(value: PrimitiveSExpr | undefined): string | number;
4631
- get value(): T;
4632
- set value(value: T);
4633
- getChildren(): SxClass[];
4634
- protected formatValue(): string;
4635
- getString(): string;
4636
- }
4637
- declare abstract class NumericListProperty extends SxClass {
4638
- protected _values: number[];
4639
- constructor(values: number[]);
4640
- static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): NumericListProperty;
4641
- get values(): number[];
4642
- set values(values: number[]);
4643
- getChildren(): SxClass[];
4644
- getString(): string;
4645
- }
4646
- declare abstract class CoordinateProperty extends SxClass {
4647
- protected _x: number;
4648
- protected _y: number;
4649
- constructor(x: number, y: number);
4650
- static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): CoordinateProperty;
4651
- get x(): number;
4652
- set x(value: number);
4653
- get y(): number;
4654
- set y(value: number);
4876
+ declare class Plugging extends SxClass {
4877
+ static token: string;
4878
+ token: string;
4879
+ private _sxFront?;
4880
+ private _sxBack?;
4881
+ constructor(params?: {
4882
+ front?: Front | string;
4883
+ back?: Back | string;
4884
+ });
4885
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Plugging;
4886
+ get front(): string | undefined;
4887
+ set front(value: Front | string | undefined);
4888
+ get back(): string | undefined;
4889
+ set back(value: Back | string | undefined);
4655
4890
  getChildren(): SxClass[];
4656
- getString(): string;
4657
4891
  }
4658
4892
 
4659
4893
  declare abstract class StackupSingleValueProperty<T extends string | number> extends SingleValueProperty<T> {
@@ -4866,6 +5100,14 @@ declare class Setup extends SxClass {
4866
5100
  set allowSoldermaskBridgesInFootprints(value: string | undefined);
4867
5101
  get tenting(): string[] | undefined;
4868
5102
  set tenting(sides: string[] | undefined);
5103
+ get covering(): Covering | undefined;
5104
+ set covering(value: Covering | undefined);
5105
+ get plugging(): Plugging | undefined;
5106
+ set plugging(value: Plugging | undefined);
5107
+ get capping(): string | undefined;
5108
+ set capping(value: string | undefined);
5109
+ get filling(): string | undefined;
5110
+ set filling(value: string | undefined);
4869
5111
  get auxAxisOrigin(): Coordinate | undefined;
4870
5112
  set auxAxisOrigin(origin: Coordinate | undefined);
4871
5113
  get gridOrigin(): Coordinate | undefined;
@@ -4878,6 +5120,16 @@ declare class Setup extends SxClass {
4878
5120
  set traceWidth(values: number[] | undefined);
4879
5121
  }
4880
5122
 
5123
+ declare class Capping extends SingleValueProperty<string> {
5124
+ static token: string;
5125
+ token: string;
5126
+ }
5127
+
5128
+ declare class Filling extends SingleValueProperty<string> {
5129
+ static token: string;
5130
+ token: string;
5131
+ }
5132
+
4881
5133
  declare abstract class PlotParamProperty<T extends string | number> extends SingleValueProperty<T> {
4882
5134
  static parentToken: string;
4883
5135
  }
@@ -5238,6 +5490,8 @@ declare class SetupTenting extends SxClass {
5238
5490
  static parentToken: string;
5239
5491
  token: string;
5240
5492
  private _sides;
5493
+ private _sxFront?;
5494
+ private _sxBack?;
5241
5495
  constructor(sides?: string[]);
5242
5496
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): SetupTenting;
5243
5497
  get sides(): string[];
@@ -5278,13 +5532,17 @@ interface SetupPropertyValues {
5278
5532
  padDrill?: SetupPadDrill;
5279
5533
  allowSoldermaskBridgesInFootprints?: SetupAllowSoldermaskBridgesInFootprints;
5280
5534
  tenting?: SetupTenting;
5535
+ covering?: Covering;
5536
+ plugging?: Plugging;
5537
+ capping?: Capping;
5538
+ filling?: Filling;
5281
5539
  auxAxisOrigin?: SetupAuxAxisOrigin;
5282
5540
  gridOrigin?: SetupGridOrigin;
5283
5541
  visibleElements?: SetupVisibleElements;
5284
5542
  padToPasteClearanceValues?: SetupPadToPasteClearanceValues;
5285
5543
  traceWidth?: SetupTraceWidth;
5286
5544
  }
5287
- 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;
5545
+ 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;
5288
5546
 
5289
5547
  declare class PcbGeneral extends SxClass {
5290
5548
  static token: string;
@@ -5397,12 +5655,12 @@ declare class ViaNet extends SxClass {
5397
5655
  static token: string;
5398
5656
  static parentToken: string;
5399
5657
  token: string;
5400
- private _id;
5658
+ private _id?;
5401
5659
  private _name?;
5402
- constructor(id: number, name?: string);
5660
+ constructor(idOrName: number | string, name?: string);
5403
5661
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ViaNet;
5404
- get id(): number;
5405
- set id(value: number);
5662
+ get id(): number | undefined;
5663
+ set id(value: number | undefined);
5406
5664
  get name(): string | undefined;
5407
5665
  set name(value: string | undefined);
5408
5666
  getChildren(): SxClass[];
@@ -5423,6 +5681,10 @@ interface ViaConstructorParams {
5423
5681
  uuid?: Uuid | string;
5424
5682
  tstamp?: Tstamp | string;
5425
5683
  teardrops?: PadTeardrops;
5684
+ capping?: string | Capping;
5685
+ covering?: Covering;
5686
+ plugging?: Plugging;
5687
+ filling?: string | Filling;
5426
5688
  }
5427
5689
  declare class Via extends SxClass {
5428
5690
  static token: string;
@@ -5440,6 +5702,10 @@ declare class Via extends SxClass {
5440
5702
  private _sxUuid?;
5441
5703
  private _sxTstamp?;
5442
5704
  private _sxTeardrops?;
5705
+ private _sxCapping?;
5706
+ private _sxCovering?;
5707
+ private _sxPlugging?;
5708
+ private _sxFilling?;
5443
5709
  constructor(params?: ViaConstructorParams);
5444
5710
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Via;
5445
5711
  private consumeBareToken;
@@ -5469,6 +5735,14 @@ declare class Via extends SxClass {
5469
5735
  set uuid(value: Uuid | string | undefined);
5470
5736
  get teardrops(): PadTeardrops | undefined;
5471
5737
  set teardrops(value: PadTeardrops | undefined);
5738
+ get capping(): string | undefined;
5739
+ set capping(value: string | Capping | undefined);
5740
+ get covering(): Covering | undefined;
5741
+ set covering(value: Covering | undefined);
5742
+ get plugging(): Plugging | undefined;
5743
+ set plugging(value: Plugging | undefined);
5744
+ get filling(): string | undefined;
5745
+ set filling(value: string | Filling | undefined);
5472
5746
  get tstamp(): Tstamp | undefined;
5473
5747
  set tstamp(value: Tstamp | string | undefined);
5474
5748
  getChildren(): SxClass[];
@@ -5595,4 +5869,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
5595
5869
  declare const parseKicadPcb: (sexpr: string) => KicadPcb;
5596
5870
  declare const parseKicadMod: (sexpr: string) => Footprint;
5597
5871
 
5598
- 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, 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, 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, SchematicSymbol, type SchematicSymbolConstructorParams, SchematicText, 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, SymbolPin, SymbolPinLength, SymbolPinName, SymbolPinNames, SymbolPinNamesHide, SymbolPinNamesOffset, SymbolPinNumber, SymbolPinNumbers, SymbolPinNumbersHide, SymbolPolyline, SymbolPolylineFill, type SymbolPolylineFillLike, SymbolPower, SymbolProperty, SymbolPropertyId, SymbolRectangle, SymbolRectangleEnd, SymbolRectangleFill, SymbolRectangleStart, SymbolText, SymbolUnit, Target, 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 };
5872
+ 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, 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, 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 };