kicadts 0.0.30 → 0.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +124 -12
- package/dist/index.js +433 -88
- 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
|
|
|
@@ -3447,6 +3520,17 @@ declare class FootprintPlaced extends SxPrimitiveBoolean {
|
|
|
3447
3520
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintPlaced;
|
|
3448
3521
|
}
|
|
3449
3522
|
|
|
3523
|
+
declare class Zone extends SxClass {
|
|
3524
|
+
static token: string;
|
|
3525
|
+
token: string;
|
|
3526
|
+
private _rawChildren;
|
|
3527
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Zone;
|
|
3528
|
+
get rawChildren(): PrimitiveSExpr[];
|
|
3529
|
+
set rawChildren(children: PrimitiveSExpr[]);
|
|
3530
|
+
getChildren(): SxClass[];
|
|
3531
|
+
getString(): string;
|
|
3532
|
+
}
|
|
3533
|
+
|
|
3450
3534
|
interface FootprintConstructorParams {
|
|
3451
3535
|
libraryLink?: string;
|
|
3452
3536
|
version?: number | FootprintVersion;
|
|
@@ -3487,6 +3571,7 @@ interface FootprintConstructorParams {
|
|
|
3487
3571
|
fpPolys?: FpPoly[];
|
|
3488
3572
|
pads?: FootprintPad[];
|
|
3489
3573
|
models?: FootprintModel[];
|
|
3574
|
+
zones?: Zone[];
|
|
3490
3575
|
}
|
|
3491
3576
|
declare class Footprint extends SxClass {
|
|
3492
3577
|
static token: string;
|
|
@@ -3532,6 +3617,7 @@ declare class Footprint extends SxClass {
|
|
|
3532
3617
|
private _fpPolys;
|
|
3533
3618
|
private _fpPads;
|
|
3534
3619
|
private _models;
|
|
3620
|
+
private _zones;
|
|
3535
3621
|
constructor(params?: FootprintConstructorParams);
|
|
3536
3622
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Footprint;
|
|
3537
3623
|
get libraryLink(): string | undefined;
|
|
@@ -3614,6 +3700,8 @@ declare class Footprint extends SxClass {
|
|
|
3614
3700
|
set fpPads(value: FootprintPad[]);
|
|
3615
3701
|
get models(): FootprintModel[];
|
|
3616
3702
|
set models(value: FootprintModel[]);
|
|
3703
|
+
get zones(): Zone[];
|
|
3704
|
+
set zones(value: Zone[]);
|
|
3617
3705
|
getChildren(): SxClass[];
|
|
3618
3706
|
getString(): string;
|
|
3619
3707
|
}
|
|
@@ -4116,6 +4204,16 @@ declare class GrTextRenderCachePolygon extends SxClass {
|
|
|
4116
4204
|
getString(): string;
|
|
4117
4205
|
}
|
|
4118
4206
|
|
|
4207
|
+
declare class GrPolyNet extends SxClass {
|
|
4208
|
+
id: number;
|
|
4209
|
+
static token: string;
|
|
4210
|
+
static parentToken: string;
|
|
4211
|
+
token: string;
|
|
4212
|
+
constructor(id: number);
|
|
4213
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrPolyNet;
|
|
4214
|
+
getString(): string;
|
|
4215
|
+
}
|
|
4216
|
+
|
|
4119
4217
|
declare class GrPolyFill extends SxClass {
|
|
4120
4218
|
static token: string;
|
|
4121
4219
|
static parentToken: string;
|
|
@@ -4134,6 +4232,7 @@ interface GrPolyConstructorParams {
|
|
|
4134
4232
|
width?: Width | number;
|
|
4135
4233
|
stroke?: Stroke;
|
|
4136
4234
|
fill?: GrPolyFill | boolean;
|
|
4235
|
+
net?: GrPolyNet | number;
|
|
4137
4236
|
uuid?: Uuid | string;
|
|
4138
4237
|
}
|
|
4139
4238
|
declare class GrPoly extends SxClass {
|
|
@@ -4144,6 +4243,7 @@ declare class GrPoly extends SxClass {
|
|
|
4144
4243
|
private _sxWidth?;
|
|
4145
4244
|
private _sxStroke?;
|
|
4146
4245
|
private _sxFill?;
|
|
4246
|
+
private _sxNet?;
|
|
4147
4247
|
private _sxUuid?;
|
|
4148
4248
|
constructor(params?: GrPolyConstructorParams);
|
|
4149
4249
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrPoly;
|
|
@@ -4166,6 +4266,8 @@ declare class GrPoly extends SxClass {
|
|
|
4166
4266
|
get uuid(): string | undefined;
|
|
4167
4267
|
set uuid(value: Uuid | string | undefined);
|
|
4168
4268
|
get uuidClass(): Uuid | undefined;
|
|
4269
|
+
get net(): number | undefined;
|
|
4270
|
+
set net(value: GrPolyNet | number | undefined);
|
|
4169
4271
|
getChildren(): SxClass[];
|
|
4170
4272
|
}
|
|
4171
4273
|
|
|
@@ -4480,17 +4582,6 @@ declare class SegmentLocked extends SxPrimitiveBoolean {
|
|
|
4480
4582
|
getString(): string;
|
|
4481
4583
|
}
|
|
4482
4584
|
|
|
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
4585
|
declare class Layers extends SxClass {
|
|
4495
4586
|
static token: string;
|
|
4496
4587
|
token: string;
|
|
@@ -4511,6 +4602,27 @@ declare class FpPolyLocked extends SxPrimitiveBoolean {
|
|
|
4511
4602
|
getString(): string;
|
|
4512
4603
|
}
|
|
4513
4604
|
|
|
4605
|
+
declare class TextBoxSize extends SxClass {
|
|
4606
|
+
width: number;
|
|
4607
|
+
height: number;
|
|
4608
|
+
static token: string;
|
|
4609
|
+
static parentToken: string;
|
|
4610
|
+
token: string;
|
|
4611
|
+
constructor(width: number, height: number);
|
|
4612
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): TextBoxSize;
|
|
4613
|
+
getString(): string;
|
|
4614
|
+
}
|
|
4615
|
+
|
|
4616
|
+
declare class TextBoxFill extends SxClass {
|
|
4617
|
+
static token: string;
|
|
4618
|
+
static parentToken: string;
|
|
4619
|
+
token: string;
|
|
4620
|
+
private _sxType?;
|
|
4621
|
+
private _sxColor?;
|
|
4622
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): TextBoxFill;
|
|
4623
|
+
getChildren(): SxClass[];
|
|
4624
|
+
}
|
|
4625
|
+
|
|
4514
4626
|
declare class PcbPlotParams extends SxClass {
|
|
4515
4627
|
static token: string;
|
|
4516
4628
|
static parentToken: string;
|
|
@@ -5595,4 +5707,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
|
|
|
5595
5707
|
declare const parseKicadPcb: (sexpr: string) => KicadPcb;
|
|
5596
5708
|
declare const parseKicadMod: (sexpr: string) => Footprint;
|
|
5597
5709
|
|
|
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 };
|
|
5710
|
+
export { At, type AtInput, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Color, Dimension, DimensionFormat, DimensionStyle, Dnp, EmbeddedFile, EmbeddedFileChecksum, type EmbeddedFileConstructorParams, EmbeddedFileData, EmbeddedFileName, EmbeddedFileType, EmbeddedFiles, type EmbeddedFilesConstructorParams, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintGenerator, FootprintGeneratorVersion, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintVersion, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, FpCircleNet, FpLine, type FpLineConstructorParams, FpLineEnd, FpLineNet, FpLineStart, FpPoly, type FpPolyConstructorParams, FpPolyFill, FpPolyLocked, FpRect, type FpRectConstructorParams, FpRectEnd, FpRectFill, FpRectNet, FpRectStart, FpText, FpTextBox, FpTextBoxAngle, type FpTextBoxConstructorParams, FpTextBoxEnd, FpTextBoxStart, type FpTextConstructorParams, type FpTextType, Generated, GlobalLabel, type GlobalLabelConstructorParams, type GlobalLabelShape, GrArc, type GrArcConstructorParams, GrArcEnd, GrArcMid, type GrArcPoint, GrArcStart, GrCircle, GrCircleCenter, type GrCircleConstructorParams, GrCircleEnd, GrCircleLocked, type GrCirclePoint, GrCurve, type GrCurveConstructorParams, GrLine, GrLineAngle, type GrLineConstructorParams, GrLineEnd, GrLineLocked, type GrLinePoint, GrLineStart, GrPoly, type GrPolyConstructorParams, GrPolyFill, GrPolyNet, GrRect, type GrRectConstructorParams, GrRectEnd, GrRectFill, GrRectLocked, GrRectStart, GrText, type GrTextConstructorParams, type GrTextPosition, GrTextRenderCache, GrTextRenderCachePolygon, Group, type GroupConstructorParams, GroupLocked, GroupMembers, Image, type ImageConstructorParams, ImageData, ImageScale, InBom, Junction, type JunctionConstructorParams, JunctionDiameter, KicadPcb, type KicadPcbConstructorParams, KicadSch, type KicadSchConstructorParams, KicadSchGenerator, KicadSchGeneratorVersion, KicadSchVersion, KicadSymbolLib, type KicadSymbolLibConstructorParams, KicadSymbolLibGenerator, KicadSymbolLibGeneratorVersion, KicadSymbolLibVersion, Label, type LabelConstructorParams, Layer, Layers, LibSymbols, Mirror, type ModelVector, NoConnect, type NoConnectConstructorParams, OnBoard, PadChamfer, PadChamferRatio, PadClearance, PadDieLength, PadDrill, PadDrillOffset, PadLayers, type PadLayersInput, PadNet, PadOptions, type PadOptionsAnchorShape, type PadOptionsClearanceType, PadPinFunction, PadPinType, PadPrimitiveGrArc, type PadPrimitiveGrArcConstructorParams, PadPrimitiveGrCircle, type PadPrimitiveGrCircleConstructorParams, PadPrimitiveGrCircleFill, PadPrimitiveGrLine, PadPrimitiveGrPoly, PadPrimitives, PadProperty, PadRectDelta, PadRoundrectRratio, PadSize, type PadSizeInput, PadSolderMaskMargin, PadSolderPasteMargin, PadSolderPasteMarginRatio, PadTeardrops, PadThermalBridgeAngle, PadThermalGap, PadThermalWidth, PadZoneConnect, PadZoneLayerConnections, Paper, PcbArc, type PcbArcConstructorParams, type PcbArcPoint, PcbGeneral, PcbGeneralLegacyTeardrops, PcbGeneralThickness, PcbGenerator, PcbGeneratorVersion, PcbLayerDefinition, PcbLayers, PcbNet, PcbPlotParams, PcbVersion, PlotParamCreateGerberJobFile, PlotParamCrossoutDnpOnFab, PlotParamDashedLineDashRatio, PlotParamDashedLineGapRatio, PlotParamDisableApertMacros, PlotParamDrillShape, PlotParamDxfImperialUnits, PlotParamDxfPolygonMode, PlotParamDxfUsePcbnewFont, PlotParamExcludeEdgeLayer, PlotParamHideDnpOnFab, PlotParamHpglPenDiameter, PlotParamHpglPenNumber, PlotParamHpglPenOverlay, PlotParamHpglPenSpeed, PlotParamLayerSelection, PlotParamLineWidth, PlotParamMirror, PlotParamMode, PlotParamOutputDirectory, PlotParamOutputFormat, PlotParamPadOnSilk, PlotParamPdfBackFpPropertyPopups, PlotParamPdfFrontFpPropertyPopups, PlotParamPdfMetadata, PlotParamPdfSingleDocument, PlotParamPlotBlackAndWhite, PlotParamPlotFpText, PlotParamPlotFrameRef, PlotParamPlotInvisible, PlotParamPlotInvisibleText, PlotParamPlotOnAllLayers, PlotParamPlotOnAllLayersSelection, PlotParamPlotOtherText, PlotParamPlotPadNumbers, PlotParamPlotReference, PlotParamPlotValue, PlotParamProperty, PlotParamPsA4Output, PlotParamPsNegative, PlotParamScaleSelection, PlotParamSketchDnpOnFab, PlotParamSketchPadsOnFab, PlotParamSubtractMaskFromSilk, PlotParamSvgPrecision, PlotParamUseAuxOrigin, PlotParamUseGerberAdvancedAttributes, PlotParamUseGerberAttributes, PlotParamUseGerberExtensions, PlotParamViaOnMask, Polyline, type PolylineConstructorParams, Property, type PropertyConstructorParams, PropertyHide, PropertyUnlocked, Pts, PtsArc, PtsArcEnd, PtsArcMid, PtsArcStart, type RGBAColor, RenderCache, SchematicPolyline, SchematicRectangle, SchematicSymbol, type SchematicSymbolConstructorParams, SchematicText, SchematicTextBox, type SchematicTextConstructorParams, Segment, type SegmentConstructorParams, SegmentEnd, SegmentLocked, SegmentNet, SegmentStart, Setup, SetupAllowSoldermaskBridgesInFootprints, SetupAuxAxisOrigin, SetupEdgeWidth, SetupGridOrigin, SetupLastTraceWidth, SetupModEdgeWidth, SetupModTextSize, SetupModTextWidth, SetupPadDrill, SetupPadSize, SetupPadToMaskClearance, SetupPadToPasteClearance, SetupPadToPasteClearanceRatio, SetupPadToPasteClearanceValues, SetupPcbTextSize, SetupPcbTextWidth, type SetupProperty, type SetupPropertyValues, SetupSegmentWidth, SetupSolderMaskMinWidth, SetupTenting, SetupTraceClearance, SetupTraceMin, SetupTraceWidth, SetupUviaDrill, SetupUviaMinDrill, SetupUviaMinSize, SetupUviaSize, SetupUviasAllowed, SetupViaDrill, SetupViaMinDrill, SetupViaMinSize, SetupViaSize, SetupVisibleElements, SetupZone45Only, SetupZoneClearance, Sheet, type SheetConstructorParams, SheetFill, SheetInstancePage, SheetInstancePath, SheetInstances, SheetInstancesForSheet, SheetInstancesProject, SheetInstancesRoot, SheetInstancesRootPage, SheetInstancesRootPath, SheetPin, type SheetPinElectricalType, SheetProperty, SheetSize, Stackup, StackupCastellatedPads, StackupCopperFinish, StackupDielectricConstraints, StackupEdgeConnector, StackupEdgePlating, StackupLayer, StackupLayerColor, StackupLayerEpsilonR, StackupLayerLossTangent, StackupLayerMaterial, StackupLayerThickness, StackupLayerType, type StandardPaperSize, Stroke, type StrokeProperty, StrokeType, type StrokeTypeString, SxClass, SymbolArc, SymbolArcEnd, SymbolArcFill, SymbolArcMid, SymbolArcStart, SymbolCircle, SymbolCircleCenter, SymbolCircleFill, SymbolCircleRadius, SymbolDuplicatePinNumbersAreJumpers, SymbolFillType, SymbolInstancePath, SymbolInstanceReference, SymbolInstanceUnit, SymbolInstances, SymbolInstancesProject, SymbolLibId, SymbolLibName, SymbolPin, SymbolPinLength, SymbolPinName, SymbolPinNames, SymbolPinNamesHide, SymbolPinNamesOffset, SymbolPinNumber, SymbolPinNumbers, SymbolPinNumbersHide, SymbolPolyline, SymbolPolylineFill, type SymbolPolylineFillLike, SymbolPower, SymbolProperty, SymbolPropertyId, SymbolRectangle, SymbolRectangleEnd, SymbolRectangleFill, SymbolRectangleStart, SymbolText, SymbolTextBox, SymbolUnit, Target, TextBoxFill, TextBoxSize, TextEffects, type TextEffectsConstructorParams, TextEffectsFont, TextEffectsFontBold, TextEffectsFontFace, TextEffectsFontItalic, TextEffectsFontLineSpacing, type TextEffectsFontProperty, TextEffectsFontSize, TextEffectsFontThickness, TextEffectsJustify, type TextEffectsProperty, TitleBlock, TitleBlockComment, TitleBlockCompany, type TitleBlockConstructorParams, TitleBlockDate, TitleBlockRevision, TitleBlockTitle, Tstamp, Unit, type UnitString, Uuid, Via, type ViaConstructorParams, ViaNet, Width, Wire, type WireConstructorParams, Xy, Zone, parseKicadMod, parseKicadPcb, parseKicadSch, parseKicadSexpr };
|