kicadts 0.0.33 → 0.0.35

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 +380 -16
  2. package/dist/index.js +1026 -71
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -3621,15 +3621,390 @@ declare class FootprintUnits extends SxClass {
3621
3621
  getChildren(): SxClass[];
3622
3622
  }
3623
3623
 
3624
+ declare class Layers extends SxClass {
3625
+ static token: string;
3626
+ token: string;
3627
+ private _names;
3628
+ constructor(names?: Array<string | number>);
3629
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Layers;
3630
+ get names(): string[];
3631
+ set names(values: Array<string | number>);
3632
+ getString(): string;
3633
+ }
3634
+
3635
+ declare class ZoneAttrTeardropType extends SxPrimitiveString {
3636
+ static token: string;
3637
+ static parentToken: string;
3638
+ token: string;
3639
+ }
3640
+
3641
+ declare class ZoneAttrTeardrop extends SxClass {
3642
+ static token: string;
3643
+ static parentToken: string;
3644
+ token: string;
3645
+ private _sxType?;
3646
+ constructor(type?: ZoneAttrTeardropType | string);
3647
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneAttrTeardrop;
3648
+ get type(): string | undefined;
3649
+ set type(value: ZoneAttrTeardropType | string | undefined);
3650
+ getChildren(): SxClass[];
3651
+ }
3652
+
3653
+ declare class ZoneAttr extends SxClass {
3654
+ static token: string;
3655
+ static parentToken: string;
3656
+ token: string;
3657
+ private _sxTeardrop?;
3658
+ constructor(params?: {
3659
+ teardrop?: ZoneAttrTeardrop;
3660
+ });
3661
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneAttr;
3662
+ get teardrop(): ZoneAttrTeardrop | undefined;
3663
+ set teardrop(value: ZoneAttrTeardrop | undefined);
3664
+ getChildren(): SxClass[];
3665
+ }
3666
+
3667
+ declare class ZoneConnectPadsClearance extends SxPrimitiveNumber {
3668
+ static token: string;
3669
+ static parentToken: string;
3670
+ token: string;
3671
+ }
3672
+
3673
+ declare class ZoneConnectPads extends SxClass {
3674
+ static token: string;
3675
+ static parentToken: string;
3676
+ token: string;
3677
+ private _enabled?;
3678
+ private _sxClearance?;
3679
+ constructor(params?: {
3680
+ enabled?: boolean;
3681
+ clearance?: number;
3682
+ });
3683
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneConnectPads;
3684
+ get enabled(): boolean | undefined;
3685
+ set enabled(value: boolean | undefined);
3686
+ get clearance(): number | undefined;
3687
+ set clearance(value: ZoneConnectPadsClearance | number | undefined);
3688
+ getChildren(): SxClass[];
3689
+ getString(): string;
3690
+ }
3691
+
3692
+ declare class ZoneFillIslandAreaMin extends SxPrimitiveNumber {
3693
+ static token: string;
3694
+ static parentToken: string;
3695
+ token: string;
3696
+ }
3697
+
3698
+ declare class ZoneFillIslandRemovalMode extends SxPrimitiveNumber {
3699
+ static token: string;
3700
+ static parentToken: string;
3701
+ token: string;
3702
+ }
3703
+
3704
+ declare class ZoneFillRadius extends SxPrimitiveNumber {
3705
+ static token: string;
3706
+ static parentToken: string;
3707
+ token: string;
3708
+ }
3709
+
3710
+ declare class ZoneFillSmoothing extends SxPrimitiveString {
3711
+ static token: string;
3712
+ static parentToken: string;
3713
+ token: string;
3714
+ }
3715
+
3716
+ declare class ZoneFillThermalBridgeWidth extends SxPrimitiveNumber {
3717
+ static token: string;
3718
+ static parentToken: string;
3719
+ token: string;
3720
+ }
3721
+
3722
+ declare class ZoneFillThermalGap extends SxPrimitiveNumber {
3723
+ static token: string;
3724
+ static parentToken: string;
3725
+ token: string;
3726
+ }
3727
+
3728
+ declare class ZoneFill extends SxClass {
3729
+ static token: string;
3730
+ static parentToken: string;
3731
+ token: string;
3732
+ private _filled?;
3733
+ private _sxThermalGap?;
3734
+ private _sxThermalBridgeWidth?;
3735
+ private _sxSmoothing?;
3736
+ private _sxRadius?;
3737
+ private _sxIslandRemovalMode?;
3738
+ private _sxIslandAreaMin?;
3739
+ constructor(params?: {
3740
+ filled?: boolean;
3741
+ thermalGap?: number;
3742
+ thermalBridgeWidth?: number;
3743
+ smoothing?: string;
3744
+ radius?: number;
3745
+ islandRemovalMode?: number;
3746
+ islandAreaMin?: number;
3747
+ });
3748
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneFill;
3749
+ get filled(): boolean | undefined;
3750
+ set filled(value: boolean | undefined);
3751
+ get thermalGap(): number | undefined;
3752
+ set thermalGap(value: ZoneFillThermalGap | number | undefined);
3753
+ get thermalBridgeWidth(): number | undefined;
3754
+ set thermalBridgeWidth(value: ZoneFillThermalBridgeWidth | number | undefined);
3755
+ get smoothing(): string | undefined;
3756
+ set smoothing(value: ZoneFillSmoothing | string | undefined);
3757
+ get radius(): number | undefined;
3758
+ set radius(value: ZoneFillRadius | number | undefined);
3759
+ get islandRemovalMode(): number | undefined;
3760
+ set islandRemovalMode(value: ZoneFillIslandRemovalMode | number | undefined);
3761
+ get islandAreaMin(): number | undefined;
3762
+ set islandAreaMin(value: ZoneFillIslandAreaMin | number | undefined);
3763
+ getChildren(): SxClass[];
3764
+ getString(): string;
3765
+ }
3766
+
3767
+ declare class ZoneFilledAreasThickness extends SxPrimitiveBoolean {
3768
+ static token: string;
3769
+ static parentToken: string;
3770
+ token: string;
3771
+ }
3772
+
3773
+ declare class ZoneFilledPolygon extends SxClass {
3774
+ static token: string;
3775
+ static parentToken: string;
3776
+ token: string;
3777
+ private _sxLayer?;
3778
+ private _sxPts?;
3779
+ constructor(params?: {
3780
+ layer?: Layer;
3781
+ pts?: Pts;
3782
+ });
3783
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneFilledPolygon;
3784
+ get layer(): Layer | undefined;
3785
+ set layer(value: Layer | undefined);
3786
+ get pts(): Pts | undefined;
3787
+ set pts(value: Pts | undefined);
3788
+ getChildren(): SxClass[];
3789
+ }
3790
+
3791
+ declare class ZoneHatch extends SxClass {
3792
+ style: string;
3793
+ pitch: number;
3794
+ static token: string;
3795
+ static parentToken: string;
3796
+ token: string;
3797
+ constructor(style: string, pitch: number);
3798
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneHatch;
3799
+ getString(): string;
3800
+ }
3801
+
3802
+ declare class ZoneKeepoutCopperpour extends SxPrimitiveString {
3803
+ static token: string;
3804
+ static parentToken: string;
3805
+ token: string;
3806
+ }
3807
+
3808
+ declare class ZoneKeepoutFootprints extends SxPrimitiveString {
3809
+ static token: string;
3810
+ static parentToken: string;
3811
+ token: string;
3812
+ }
3813
+
3814
+ declare class ZoneKeepoutPads extends SxPrimitiveString {
3815
+ static token: string;
3816
+ static parentToken: string;
3817
+ token: string;
3818
+ }
3819
+
3820
+ declare class ZoneKeepoutTracks extends SxPrimitiveString {
3821
+ static token: string;
3822
+ static parentToken: string;
3823
+ token: string;
3824
+ }
3825
+
3826
+ declare class ZoneKeepoutVias extends SxPrimitiveString {
3827
+ static token: string;
3828
+ static parentToken: string;
3829
+ token: string;
3830
+ }
3831
+
3832
+ declare class ZoneKeepout extends SxClass {
3833
+ static token: string;
3834
+ static parentToken: string;
3835
+ token: string;
3836
+ private _sxTracks?;
3837
+ private _sxVias?;
3838
+ private _sxPads?;
3839
+ private _sxCopperpour?;
3840
+ private _sxFootprints?;
3841
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneKeepout;
3842
+ get tracks(): string | undefined;
3843
+ set tracks(value: ZoneKeepoutTracks | string | undefined);
3844
+ get vias(): string | undefined;
3845
+ set vias(value: ZoneKeepoutVias | string | undefined);
3846
+ get pads(): string | undefined;
3847
+ set pads(value: ZoneKeepoutPads | string | undefined);
3848
+ get copperpour(): string | undefined;
3849
+ set copperpour(value: ZoneKeepoutCopperpour | string | undefined);
3850
+ get footprints(): string | undefined;
3851
+ set footprints(value: ZoneKeepoutFootprints | string | undefined);
3852
+ getChildren(): SxClass[];
3853
+ }
3854
+
3855
+ declare class ZoneMinThickness extends SxPrimitiveNumber {
3856
+ static token: string;
3857
+ static parentToken: string;
3858
+ token: string;
3859
+ }
3860
+
3861
+ declare class ZoneName extends SxPrimitiveString {
3862
+ static token: string;
3863
+ static parentToken: string;
3864
+ token: string;
3865
+ }
3866
+
3867
+ declare class ZoneNet extends SxClass {
3868
+ value: number | string;
3869
+ static token: string;
3870
+ static parentToken: string;
3871
+ token: string;
3872
+ constructor(value: number | string);
3873
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneNet;
3874
+ getString(): string;
3875
+ }
3876
+
3877
+ declare class ZoneNetName extends SxPrimitiveString {
3878
+ static token: string;
3879
+ static parentToken: string;
3880
+ token: string;
3881
+ }
3882
+
3883
+ declare class ZonePlacementEnabled extends SxPrimitiveBoolean {
3884
+ static token: string;
3885
+ static parentToken: string;
3886
+ token: string;
3887
+ }
3888
+
3889
+ declare class ZonePlacementSheetname extends SxPrimitiveString {
3890
+ static token: string;
3891
+ static parentToken: string;
3892
+ token: string;
3893
+ }
3894
+
3895
+ declare class ZonePlacement extends SxClass {
3896
+ static token: string;
3897
+ static parentToken: string;
3898
+ token: string;
3899
+ private _sxEnabled?;
3900
+ private _sxSheetname?;
3901
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZonePlacement;
3902
+ get enabled(): boolean | undefined;
3903
+ set enabled(value: ZonePlacementEnabled | boolean | undefined);
3904
+ get sheetname(): string | undefined;
3905
+ set sheetname(value: ZonePlacementSheetname | string | undefined);
3906
+ getChildren(): SxClass[];
3907
+ }
3908
+
3909
+ declare class ZonePolygon extends SxClass {
3910
+ static token: string;
3911
+ static parentToken: string;
3912
+ token: string;
3913
+ private _sxPts?;
3914
+ constructor(pts?: Pts);
3915
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZonePolygon;
3916
+ get pts(): Pts | undefined;
3917
+ set pts(value: Pts | undefined);
3918
+ getChildren(): SxClass[];
3919
+ }
3920
+
3921
+ declare class ZonePriority extends SxPrimitiveNumber {
3922
+ static token: string;
3923
+ static parentToken: string;
3924
+ token: string;
3925
+ }
3926
+
3927
+ interface ZoneConstructorParams {
3928
+ net?: ZoneNet | number | string;
3929
+ netName?: ZoneNetName | string;
3930
+ layer?: Layer | string | string[];
3931
+ layers?: Layers | string[];
3932
+ tstamp?: Tstamp | string;
3933
+ uuid?: Uuid | string;
3934
+ name?: ZoneName | string;
3935
+ hatch?: ZoneHatch;
3936
+ priority?: ZonePriority | number;
3937
+ attr?: ZoneAttr;
3938
+ connectPads?: ZoneConnectPads;
3939
+ minThickness?: ZoneMinThickness | number;
3940
+ filledAreasThickness?: ZoneFilledAreasThickness | boolean;
3941
+ keepout?: ZoneKeepout;
3942
+ placement?: ZonePlacement;
3943
+ fill?: ZoneFill;
3944
+ polygons?: ZonePolygon[];
3945
+ filledPolygons?: ZoneFilledPolygon[];
3946
+ }
3624
3947
  declare class Zone extends SxClass {
3625
3948
  static token: string;
3626
3949
  token: string;
3627
- private _rawChildren;
3950
+ private _sxNet?;
3951
+ private _sxNetName?;
3952
+ private _sxLayer?;
3953
+ private _sxLayers?;
3954
+ private _sxTstamp?;
3955
+ private _sxUuid?;
3956
+ private _sxName?;
3957
+ private _sxHatch?;
3958
+ private _sxPriority?;
3959
+ private _sxAttr?;
3960
+ private _sxConnectPads?;
3961
+ private _sxMinThickness?;
3962
+ private _sxFilledAreasThickness?;
3963
+ private _sxKeepout?;
3964
+ private _sxPlacement?;
3965
+ private _sxFill?;
3966
+ private _polygons;
3967
+ private _filledPolygons;
3968
+ constructor(params?: ZoneConstructorParams);
3628
3969
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Zone;
3629
- get rawChildren(): PrimitiveSExpr[];
3630
- set rawChildren(children: PrimitiveSExpr[]);
3970
+ get net(): number | string | undefined;
3971
+ set net(value: ZoneNet | number | string | undefined);
3972
+ get netClass(): ZoneNet | undefined;
3973
+ get netName(): string | undefined;
3974
+ set netName(value: ZoneNetName | string | undefined);
3975
+ get layer(): Layer | undefined;
3976
+ set layer(value: Layer | string | string[] | undefined);
3977
+ get layers(): Layers | undefined;
3978
+ set layers(value: Layers | string[] | undefined);
3979
+ get tstamp(): Tstamp | undefined;
3980
+ set tstamp(value: Tstamp | string | undefined);
3981
+ get uuid(): Uuid | undefined;
3982
+ set uuid(value: Uuid | string | undefined);
3983
+ get name(): string | undefined;
3984
+ set name(value: ZoneName | string | undefined);
3985
+ get hatch(): ZoneHatch | undefined;
3986
+ set hatch(value: ZoneHatch | undefined);
3987
+ get priority(): number | undefined;
3988
+ set priority(value: ZonePriority | number | undefined);
3989
+ get attr(): ZoneAttr | undefined;
3990
+ set attr(value: ZoneAttr | undefined);
3991
+ get connectPads(): ZoneConnectPads | undefined;
3992
+ set connectPads(value: ZoneConnectPads | undefined);
3993
+ get minThickness(): number | undefined;
3994
+ set minThickness(value: ZoneMinThickness | number | undefined);
3995
+ get filledAreasThickness(): boolean | undefined;
3996
+ set filledAreasThickness(value: ZoneFilledAreasThickness | boolean | undefined);
3997
+ get keepout(): ZoneKeepout | undefined;
3998
+ set keepout(value: ZoneKeepout | undefined);
3999
+ get placement(): ZonePlacement | undefined;
4000
+ set placement(value: ZonePlacement | undefined);
4001
+ get fill(): ZoneFill | undefined;
4002
+ set fill(value: ZoneFill | undefined);
4003
+ get polygons(): ZonePolygon[];
4004
+ set polygons(value: ZonePolygon[]);
4005
+ get filledPolygons(): ZoneFilledPolygon[];
4006
+ set filledPolygons(value: ZoneFilledPolygon[]);
3631
4007
  getChildren(): SxClass[];
3632
- getString(): string;
3633
4008
  }
3634
4009
 
3635
4010
  interface FootprintConstructorParams {
@@ -4723,17 +5098,6 @@ declare class SegmentLocked extends SxPrimitiveBoolean {
4723
5098
  getString(): string;
4724
5099
  }
4725
5100
 
4726
- declare class Layers extends SxClass {
4727
- static token: string;
4728
- token: string;
4729
- private _names;
4730
- constructor(names?: Array<string | number>);
4731
- static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Layers;
4732
- get names(): string[];
4733
- set names(values: Array<string | number>);
4734
- getString(): string;
4735
- }
4736
-
4737
5101
  declare class FpPolyLocked extends SxPrimitiveBoolean {
4738
5102
  static token: string;
4739
5103
  static parentToken: string;
@@ -5932,4 +6296,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
5932
6296
  declare const parseKicadPcb: (sexpr: string) => KicadPcb;
5933
6297
  declare const parseKicadMod: (sexpr: string) => Footprint;
5934
6298
 
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 };
6299
+ 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, ZoneAttr, ZoneAttrTeardrop, ZoneAttrTeardropType, ZoneConnectPads, ZoneConnectPadsClearance, type ZoneConstructorParams, ZoneFill, ZoneFillIslandAreaMin, ZoneFillIslandRemovalMode, ZoneFillRadius, ZoneFillSmoothing, ZoneFillThermalBridgeWidth, ZoneFillThermalGap, ZoneFilledAreasThickness, ZoneFilledPolygon, ZoneHatch, ZoneKeepout, ZoneKeepoutCopperpour, ZoneKeepoutFootprints, ZoneKeepoutPads, ZoneKeepoutTracks, ZoneKeepoutVias, ZoneMinThickness, ZoneName, ZoneNet, ZoneNetName, ZonePlacement, ZonePlacementEnabled, ZonePlacementSheetname, ZonePolygon, ZonePriority, parseKicadMod, parseKicadPcb, parseKicadSch, parseKicadSexpr };