kicadts 0.0.18 → 0.0.20

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 +350 -4
  2. package/dist/index.js +1148 -90
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -128,12 +128,82 @@ declare class Xy extends SxClass {
128
128
  declare class Pts extends SxClass {
129
129
  static token: string;
130
130
  token: string;
131
- points: Array<Xy>;
132
- constructor(points?: Array<Xy>);
131
+ points: Array<Xy | PtsArc>;
132
+ constructor(points?: Array<Xy | PtsArc>);
133
133
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Pts;
134
134
  getChildren(): SxClass[];
135
135
  getString(): string;
136
136
  }
137
+ declare class PtsArc extends SxClass {
138
+ static token: string;
139
+ static parentToken: string;
140
+ token: string;
141
+ private _sxStart?;
142
+ private _sxMid?;
143
+ private _sxEnd?;
144
+ constructor(params?: {
145
+ start?: PtsArcStart | {
146
+ x: number;
147
+ y: number;
148
+ };
149
+ mid?: PtsArcMid | {
150
+ x: number;
151
+ y: number;
152
+ };
153
+ end?: PtsArcEnd | {
154
+ x: number;
155
+ y: number;
156
+ };
157
+ });
158
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PtsArc;
159
+ get start(): PtsArcStart | undefined;
160
+ set start(value: PtsArcStart | {
161
+ x: number;
162
+ y: number;
163
+ } | undefined);
164
+ get mid(): PtsArcMid | undefined;
165
+ set mid(value: PtsArcMid | {
166
+ x: number;
167
+ y: number;
168
+ } | undefined);
169
+ get end(): PtsArcEnd | undefined;
170
+ set end(value: PtsArcEnd | {
171
+ x: number;
172
+ y: number;
173
+ } | undefined);
174
+ getChildren(): SxClass[];
175
+ getString(): string;
176
+ }
177
+ declare class PtsArcStart extends SxClass {
178
+ x: number;
179
+ y: number;
180
+ static token: string;
181
+ static parentToken: string;
182
+ token: string;
183
+ constructor(x: number, y: number);
184
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PtsArcStart;
185
+ getString(): string;
186
+ }
187
+ declare class PtsArcMid extends SxClass {
188
+ x: number;
189
+ y: number;
190
+ static token: string;
191
+ static parentToken: string;
192
+ token: string;
193
+ constructor(x: number, y: number);
194
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PtsArcMid;
195
+ getString(): string;
196
+ }
197
+ declare class PtsArcEnd extends SxClass {
198
+ x: number;
199
+ y: number;
200
+ static token: string;
201
+ static parentToken: string;
202
+ token: string;
203
+ constructor(x: number, y: number);
204
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PtsArcEnd;
205
+ getString(): string;
206
+ }
137
207
 
138
208
  type AtInput = At | [x: number, y: number, angle?: number] | {
139
209
  x: number;
@@ -3404,6 +3474,7 @@ interface GrCircleConstructorParams {
3404
3474
  width?: Width | number;
3405
3475
  stroke?: Stroke;
3406
3476
  fill?: PadPrimitiveGrCircleFill | string;
3477
+ locked?: boolean;
3407
3478
  tstamp?: Tstamp | string;
3408
3479
  uuid?: Uuid | string;
3409
3480
  }
@@ -3416,6 +3487,7 @@ declare class GrCircle extends SxClass {
3416
3487
  private _sxWidth?;
3417
3488
  private _sxStroke?;
3418
3489
  private _sxFill?;
3490
+ private _sxLocked?;
3419
3491
  private _sxTstamp?;
3420
3492
  private _sxUuid?;
3421
3493
  constructor(params?: GrCircleConstructorParams);
@@ -3438,8 +3510,11 @@ declare class GrCircle extends SxClass {
3438
3510
  set fill(value: PadPrimitiveGrCircleFill | string | undefined);
3439
3511
  get tstamp(): Tstamp | undefined;
3440
3512
  set tstamp(value: Tstamp | string | undefined);
3441
- get uuid(): Uuid | undefined;
3513
+ get uuid(): string | undefined;
3514
+ get uuidClass(): Uuid | undefined;
3442
3515
  set uuid(value: Uuid | string | undefined);
3516
+ get locked(): boolean;
3517
+ set locked(value: boolean);
3443
3518
  getChildren(): SxClass[];
3444
3519
  private normalizeCenter;
3445
3520
  private normalizeEnd;
@@ -3468,6 +3543,15 @@ declare class GrCircleEnd extends SxClass {
3468
3543
  getChildren(): SxClass[];
3469
3544
  getString(): string;
3470
3545
  }
3546
+ declare class GrCircleLocked extends SxClass {
3547
+ static token: string;
3548
+ static parentToken: string;
3549
+ token: string;
3550
+ value: boolean;
3551
+ constructor(value: boolean);
3552
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrCircleLocked;
3553
+ getString(): string;
3554
+ }
3471
3555
 
3472
3556
  interface GrCurveConstructorParams {
3473
3557
  points?: Pts | Xy[] | Array<{
@@ -3585,6 +3669,128 @@ declare class GrLineLocked extends SxPrimitiveBoolean {
3585
3669
  getString(): string;
3586
3670
  }
3587
3671
 
3672
+ interface GrRectConstructorParams {
3673
+ start?: GrRectStart | {
3674
+ x: number;
3675
+ y: number;
3676
+ };
3677
+ end?: GrRectEnd | {
3678
+ x: number;
3679
+ y: number;
3680
+ };
3681
+ layer?: Layer | string | string[];
3682
+ width?: number | Width;
3683
+ stroke?: Stroke;
3684
+ fill?: boolean | GrRectFill;
3685
+ uuid?: string | Uuid;
3686
+ locked?: boolean;
3687
+ }
3688
+ declare class GrRect extends SxClass {
3689
+ static token: string;
3690
+ token: string;
3691
+ private _sxStart?;
3692
+ private _sxEnd?;
3693
+ private _sxLayer?;
3694
+ private _sxWidth?;
3695
+ private _sxStroke?;
3696
+ private _sxFill?;
3697
+ private _sxUuid?;
3698
+ private _sxLocked?;
3699
+ constructor(params?: GrRectConstructorParams);
3700
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrRect;
3701
+ get start(): GrRectStart | undefined;
3702
+ set start(value: GrRectStart | {
3703
+ x: number;
3704
+ y: number;
3705
+ } | undefined);
3706
+ get end(): GrRectEnd | undefined;
3707
+ set end(value: GrRectEnd | {
3708
+ x: number;
3709
+ y: number;
3710
+ } | undefined);
3711
+ get startPoint(): {
3712
+ x: number;
3713
+ y: number;
3714
+ } | undefined;
3715
+ get endPoint(): {
3716
+ x: number;
3717
+ y: number;
3718
+ } | undefined;
3719
+ get layer(): Layer | undefined;
3720
+ set layer(value: Layer | string | string[] | undefined);
3721
+ get stroke(): Stroke | undefined;
3722
+ set stroke(value: Stroke | undefined);
3723
+ get width(): number | undefined;
3724
+ set width(value: number | Width | undefined);
3725
+ get widthClass(): Width | undefined;
3726
+ set widthClass(value: Width | undefined);
3727
+ get fill(): boolean | undefined;
3728
+ set fill(value: boolean | GrRectFill | undefined);
3729
+ get fillClass(): GrRectFill | undefined;
3730
+ get uuid(): string | undefined;
3731
+ set uuid(value: string | Uuid | undefined);
3732
+ get uuidClass(): Uuid | undefined;
3733
+ get locked(): boolean;
3734
+ set locked(value: boolean);
3735
+ getChildren(): SxClass[];
3736
+ }
3737
+ declare class GrRectStart extends SxClass {
3738
+ static token: string;
3739
+ static parentToken: string;
3740
+ token: string;
3741
+ private _x;
3742
+ private _y;
3743
+ constructor(x: number, y: number);
3744
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrRectStart;
3745
+ get x(): number;
3746
+ set x(value: number);
3747
+ get y(): number;
3748
+ set y(value: number);
3749
+ toObject(): {
3750
+ x: number;
3751
+ y: number;
3752
+ };
3753
+ getChildren(): SxClass[];
3754
+ getString(): string;
3755
+ }
3756
+ declare class GrRectEnd extends SxClass {
3757
+ static token: string;
3758
+ static parentToken: string;
3759
+ token: string;
3760
+ private _x;
3761
+ private _y;
3762
+ constructor(x: number, y: number);
3763
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrRectEnd;
3764
+ get x(): number;
3765
+ set x(value: number);
3766
+ get y(): number;
3767
+ set y(value: number);
3768
+ toObject(): {
3769
+ x: number;
3770
+ y: number;
3771
+ };
3772
+ getChildren(): SxClass[];
3773
+ getString(): string;
3774
+ }
3775
+ declare class GrRectFill extends SxClass {
3776
+ static token: string;
3777
+ static parentToken: string;
3778
+ token: string;
3779
+ filled: boolean;
3780
+ constructor(filled: boolean);
3781
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrRectFill;
3782
+ getString(): string;
3783
+ }
3784
+ declare class GrRectLocked extends SxClass {
3785
+ static token: string;
3786
+ static parentToken: string;
3787
+ token: string;
3788
+ value: boolean;
3789
+ constructor(value: boolean);
3790
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrRectLocked;
3791
+ getString(): string;
3792
+ }
3793
+
3588
3794
  interface GrTextPosition {
3589
3795
  x: number;
3590
3796
  y: number;
@@ -3597,6 +3803,7 @@ interface GrTextConstructorParams {
3597
3803
  tstamp?: Tstamp | string;
3598
3804
  uuid?: Uuid | string;
3599
3805
  effects?: TextEffects;
3806
+ renderCaches?: GrTextRenderCache[];
3600
3807
  }
3601
3808
  declare class GrText extends SxClass {
3602
3809
  static token: string;
@@ -3607,6 +3814,7 @@ declare class GrText extends SxClass {
3607
3814
  private _sxTstamp?;
3608
3815
  private _sxUuid?;
3609
3816
  private _sxEffects?;
3817
+ private _renderCaches;
3610
3818
  constructor(params?: GrTextConstructorParams | string);
3611
3819
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrText;
3612
3820
  get text(): string;
@@ -3621,9 +3829,147 @@ declare class GrText extends SxClass {
3621
3829
  set uuid(value: Uuid | string | undefined);
3622
3830
  get effects(): TextEffects | undefined;
3623
3831
  set effects(value: TextEffects | undefined);
3832
+ get renderCaches(): GrTextRenderCache[];
3833
+ set renderCaches(value: GrTextRenderCache[]);
3834
+ getChildren(): SxClass[];
3835
+ getString(): string;
3836
+ }
3837
+ declare class GrTextRenderCache extends SxClass {
3838
+ static token: string;
3839
+ static parentToken: string;
3840
+ token: string;
3841
+ private _text;
3842
+ private _angle;
3843
+ private _polygons;
3844
+ constructor(params?: {
3845
+ text?: string;
3846
+ angle?: number;
3847
+ polygons?: GrTextRenderCachePolygon[];
3848
+ });
3849
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrTextRenderCache;
3850
+ get text(): string;
3851
+ set text(value: string);
3852
+ get angle(): number;
3853
+ set angle(value: number);
3854
+ get polygons(): GrTextRenderCachePolygon[];
3855
+ set polygons(value: GrTextRenderCachePolygon[]);
3856
+ getChildren(): SxClass[];
3857
+ getString(): string;
3858
+ }
3859
+ declare class GrTextRenderCachePolygon extends SxClass {
3860
+ static token: string;
3861
+ static parentToken: string;
3862
+ token: string;
3863
+ private _pts?;
3864
+ constructor(params?: {
3865
+ pts?: Pts;
3866
+ });
3867
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrTextRenderCachePolygon;
3868
+ get pts(): Pts | undefined;
3869
+ set pts(value: Pts | undefined);
3870
+ getChildren(): SxClass[];
3871
+ getString(): string;
3872
+ }
3873
+
3874
+ declare class GrPolyFill extends SxClass {
3875
+ static token: string;
3876
+ static parentToken: string;
3877
+ token: string;
3878
+ filled: boolean;
3879
+ constructor(filled: boolean);
3880
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrPolyFill;
3881
+ getString(): string;
3882
+ }
3883
+ interface GrPolyConstructorParams {
3884
+ points?: Pts | Xy[] | Array<{
3885
+ x: number;
3886
+ y: number;
3887
+ }>;
3888
+ layer?: Layer | string | Array<string | number>;
3889
+ width?: Width | number;
3890
+ stroke?: Stroke;
3891
+ fill?: GrPolyFill | boolean;
3892
+ uuid?: Uuid | string;
3893
+ }
3894
+ declare class GrPoly extends SxClass {
3895
+ static token: string;
3896
+ token: string;
3897
+ private _sxPts?;
3898
+ private _sxLayer?;
3899
+ private _sxWidth?;
3900
+ private _sxStroke?;
3901
+ private _sxFill?;
3902
+ private _sxUuid?;
3903
+ constructor(params?: GrPolyConstructorParams);
3904
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrPoly;
3905
+ get points(): Pts | undefined;
3906
+ set points(value: Pts | Xy[] | Array<{
3907
+ x: number;
3908
+ y: number;
3909
+ }> | undefined);
3910
+ get layer(): Layer | undefined;
3911
+ set layer(value: Layer | string | Array<string | number> | undefined);
3912
+ get width(): number | undefined;
3913
+ set width(value: Width | number | undefined);
3914
+ get widthClass(): Width | undefined;
3915
+ set widthClass(value: Width | undefined);
3916
+ get stroke(): Stroke | undefined;
3917
+ set stroke(value: Stroke | undefined);
3918
+ get fill(): boolean | undefined;
3919
+ set fill(value: GrPolyFill | boolean | undefined);
3920
+ get fillClass(): GrPolyFill | undefined;
3921
+ get uuid(): string | undefined;
3922
+ set uuid(value: Uuid | string | undefined);
3923
+ get uuidClass(): Uuid | undefined;
3924
+ getChildren(): SxClass[];
3925
+ }
3926
+
3927
+ interface GroupConstructorParams {
3928
+ name?: string;
3929
+ uuid?: string | Uuid;
3930
+ locked?: boolean;
3931
+ members?: string[];
3932
+ }
3933
+ declare class Group extends SxClass {
3934
+ static token: string;
3935
+ token: string;
3936
+ private _name;
3937
+ private _sxUuid?;
3938
+ private _sxLocked?;
3939
+ private _sxMembers?;
3940
+ constructor(params?: GroupConstructorParams);
3941
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Group;
3942
+ get name(): string;
3943
+ set name(value: string);
3944
+ get uuid(): string | undefined;
3945
+ set uuid(value: string | Uuid | undefined);
3946
+ get uuidClass(): Uuid | undefined;
3947
+ get locked(): boolean;
3948
+ set locked(value: boolean);
3949
+ get members(): string[];
3950
+ set members(value: string[]);
3951
+ get membersClass(): GroupMembers | undefined;
3624
3952
  getChildren(): SxClass[];
3625
3953
  getString(): string;
3626
3954
  }
3955
+ declare class GroupLocked extends SxClass {
3956
+ static token: string;
3957
+ static parentToken: string;
3958
+ token: string;
3959
+ value: boolean;
3960
+ constructor(value: boolean);
3961
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GroupLocked;
3962
+ getString(): string;
3963
+ }
3964
+ declare class GroupMembers extends SxClass {
3965
+ static token: string;
3966
+ static parentToken: string;
3967
+ token: string;
3968
+ members: string[];
3969
+ constructor(members: string[]);
3970
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GroupMembers;
3971
+ getString(): string;
3972
+ }
3627
3973
 
3628
3974
  declare class SegmentEnd extends SxClass {
3629
3975
  static token: string;
@@ -4842,4 +5188,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
4842
5188
  declare const parseKicadPcb: (sexpr: string) => KicadPcb;
4843
5189
  declare const parseKicadMod: (sexpr: string) => Footprint;
4844
5190
 
4845
- export { At, type AtInput, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Color, Dnp, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, FpLine, type FpLineConstructorParams, FpLineEnd, FpLineStart, FpPoly, type FpPolyConstructorParams, FpPolyFill, FpPolyLocked, FpRect, type FpRectConstructorParams, FpRectEnd, FpRectFill, FpRectStart, FpText, FpTextBox, FpTextBoxAngle, type FpTextBoxConstructorParams, FpTextBoxEnd, FpTextBoxStart, type FpTextConstructorParams, type FpTextType, GlobalLabel, type GlobalLabelConstructorParams, type GlobalLabelShape, GrArc, type GrArcConstructorParams, GrArcEnd, GrArcMid, type GrArcPoint, GrArcStart, GrCircle, GrCircleCenter, type GrCircleConstructorParams, GrCircleEnd, type GrCirclePoint, GrCurve, type GrCurveConstructorParams, GrLine, GrLineAngle, type GrLineConstructorParams, GrLineEnd, GrLineLocked, type GrLinePoint, GrLineStart, GrText, type GrTextConstructorParams, type GrTextPosition, Image, type ImageConstructorParams, ImageData, ImageScale, InBom, Junction, type JunctionConstructorParams, JunctionDiameter, KicadPcb, type KicadPcbConstructorParams, KicadSch, type KicadSchConstructorParams, KicadSchGenerator, KicadSchGeneratorVersion, KicadSchVersion, 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, PadRectDelta, PadRoundrectRratio, PadSize, type PadSizeInput, PadSolderMaskMargin, PadSolderPasteMargin, PadSolderPasteMarginRatio, PadTeardrops, PadThermalBridgeAngle, PadThermalGap, PadThermalWidth, PadZoneConnect, Paper, 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, 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, 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, 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 };
5191
+ export { At, type AtInput, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Color, Dnp, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, FpLine, type FpLineConstructorParams, FpLineEnd, FpLineStart, FpPoly, type FpPolyConstructorParams, FpPolyFill, FpPolyLocked, FpRect, type FpRectConstructorParams, FpRectEnd, FpRectFill, FpRectStart, FpText, FpTextBox, FpTextBoxAngle, type FpTextBoxConstructorParams, FpTextBoxEnd, FpTextBoxStart, type FpTextConstructorParams, type FpTextType, 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, 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, PadRectDelta, PadRoundrectRratio, PadSize, type PadSizeInput, PadSolderMaskMargin, PadSolderPasteMargin, PadSolderPasteMarginRatio, PadTeardrops, PadThermalBridgeAngle, PadThermalGap, PadThermalWidth, PadZoneConnect, Paper, 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, 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, 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 };