kicadts 0.0.38 → 0.0.40
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 +148 -48
- package/dist/index.js +625 -259
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2082,6 +2082,12 @@ declare class FootprintSolderPasteRatio extends SxPrimitiveNumber {
|
|
|
2082
2082
|
token: string;
|
|
2083
2083
|
}
|
|
2084
2084
|
|
|
2085
|
+
declare class FootprintSolderPasteMarginRatio extends FootprintSolderPasteRatio {
|
|
2086
|
+
static token: string;
|
|
2087
|
+
static parentToken: string;
|
|
2088
|
+
token: string;
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2085
2091
|
declare class FootprintTags extends SxClass {
|
|
2086
2092
|
static token: string;
|
|
2087
2093
|
static parentToken: string;
|
|
@@ -2615,6 +2621,7 @@ declare class PadTeardrops extends SxClass {
|
|
|
2615
2621
|
private _bestWidthRatio?;
|
|
2616
2622
|
private _maxWidth?;
|
|
2617
2623
|
private _filterRatio?;
|
|
2624
|
+
private _curvePoints?;
|
|
2618
2625
|
private _curvedEdges?;
|
|
2619
2626
|
private _enabled?;
|
|
2620
2627
|
private _allowTwoSegments?;
|
|
@@ -2630,6 +2637,8 @@ declare class PadTeardrops extends SxClass {
|
|
|
2630
2637
|
set maxWidth(value: number | undefined);
|
|
2631
2638
|
get filterRatio(): number | undefined;
|
|
2632
2639
|
set filterRatio(value: number | undefined);
|
|
2640
|
+
get curvePoints(): number | undefined;
|
|
2641
|
+
set curvePoints(value: number | undefined);
|
|
2633
2642
|
get curvedEdges(): boolean | undefined;
|
|
2634
2643
|
set curvedEdges(value: boolean | undefined);
|
|
2635
2644
|
get enabled(): boolean | undefined;
|
|
@@ -3265,6 +3274,60 @@ declare class FpArcEnd extends SxClass {
|
|
|
3265
3274
|
getString(): string;
|
|
3266
3275
|
}
|
|
3267
3276
|
|
|
3277
|
+
interface FpCurveConstructorParams {
|
|
3278
|
+
points?: Pts | Xy[] | Array<{
|
|
3279
|
+
x: number;
|
|
3280
|
+
y: number;
|
|
3281
|
+
}>;
|
|
3282
|
+
layer?: Layer | string | Array<string | number>;
|
|
3283
|
+
width?: Width | number;
|
|
3284
|
+
stroke?: Stroke;
|
|
3285
|
+
tstamp?: Tstamp | string;
|
|
3286
|
+
uuid?: Uuid | string;
|
|
3287
|
+
locked?: boolean;
|
|
3288
|
+
}
|
|
3289
|
+
declare class FpCurve extends SxClass {
|
|
3290
|
+
static token: string;
|
|
3291
|
+
static parentToken: string;
|
|
3292
|
+
token: string;
|
|
3293
|
+
private _sxPts?;
|
|
3294
|
+
private _sxLayer?;
|
|
3295
|
+
private _sxWidth?;
|
|
3296
|
+
private _sxStroke?;
|
|
3297
|
+
private _sxTstamp?;
|
|
3298
|
+
private _sxUuid?;
|
|
3299
|
+
private _locked;
|
|
3300
|
+
constructor(params?: FpCurveConstructorParams);
|
|
3301
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FpCurve;
|
|
3302
|
+
get points(): Pts | undefined;
|
|
3303
|
+
set points(value: Pts | Xy[] | Array<{
|
|
3304
|
+
x: number;
|
|
3305
|
+
y: number;
|
|
3306
|
+
}> | undefined);
|
|
3307
|
+
get layer(): Layer | undefined;
|
|
3308
|
+
set layer(value: Layer | string | Array<string | number> | undefined);
|
|
3309
|
+
get width(): number | undefined;
|
|
3310
|
+
set width(value: Width | number | undefined);
|
|
3311
|
+
get stroke(): Stroke | undefined;
|
|
3312
|
+
set stroke(value: Stroke | undefined);
|
|
3313
|
+
get tstamp(): Tstamp | undefined;
|
|
3314
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
3315
|
+
get uuid(): Uuid | undefined;
|
|
3316
|
+
set uuid(value: Uuid | string | undefined);
|
|
3317
|
+
get locked(): boolean;
|
|
3318
|
+
set locked(value: boolean);
|
|
3319
|
+
getChildren(): SxClass[];
|
|
3320
|
+
}
|
|
3321
|
+
declare class FpCurveLocked extends SxClass {
|
|
3322
|
+
value: boolean;
|
|
3323
|
+
static token: string;
|
|
3324
|
+
static parentToken: string;
|
|
3325
|
+
token: string;
|
|
3326
|
+
constructor(value?: boolean);
|
|
3327
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FpCurveLocked;
|
|
3328
|
+
getString(): string;
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3268
3331
|
declare class FpPolyFill extends SxClass {
|
|
3269
3332
|
static token: string;
|
|
3270
3333
|
static parentToken: string;
|
|
@@ -3327,6 +3390,53 @@ declare class FpPoly extends SxClass {
|
|
|
3327
3390
|
getChildren(): SxClass[];
|
|
3328
3391
|
}
|
|
3329
3392
|
|
|
3393
|
+
interface GroupConstructorParams {
|
|
3394
|
+
name?: string;
|
|
3395
|
+
uuid?: string | Uuid;
|
|
3396
|
+
locked?: boolean;
|
|
3397
|
+
members?: string[];
|
|
3398
|
+
}
|
|
3399
|
+
declare class Group extends SxClass {
|
|
3400
|
+
static token: string;
|
|
3401
|
+
token: string;
|
|
3402
|
+
private _name;
|
|
3403
|
+
private _sxUuid?;
|
|
3404
|
+
private _sxLocked?;
|
|
3405
|
+
private _sxMembers?;
|
|
3406
|
+
constructor(params?: GroupConstructorParams);
|
|
3407
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Group;
|
|
3408
|
+
get name(): string;
|
|
3409
|
+
set name(value: string);
|
|
3410
|
+
get uuid(): string | undefined;
|
|
3411
|
+
set uuid(value: string | Uuid | undefined);
|
|
3412
|
+
get uuidClass(): Uuid | undefined;
|
|
3413
|
+
get locked(): boolean;
|
|
3414
|
+
set locked(value: boolean);
|
|
3415
|
+
get members(): string[];
|
|
3416
|
+
set members(value: string[]);
|
|
3417
|
+
get membersClass(): GroupMembers | undefined;
|
|
3418
|
+
getChildren(): SxClass[];
|
|
3419
|
+
getString(): string;
|
|
3420
|
+
}
|
|
3421
|
+
declare class GroupLocked extends SxClass {
|
|
3422
|
+
static token: string;
|
|
3423
|
+
static parentToken: string;
|
|
3424
|
+
token: string;
|
|
3425
|
+
value: boolean;
|
|
3426
|
+
constructor(value: boolean);
|
|
3427
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GroupLocked;
|
|
3428
|
+
getString(): string;
|
|
3429
|
+
}
|
|
3430
|
+
declare class GroupMembers extends SxClass {
|
|
3431
|
+
static token: string;
|
|
3432
|
+
static parentToken: string;
|
|
3433
|
+
token: string;
|
|
3434
|
+
members: string[];
|
|
3435
|
+
constructor(members: string[]);
|
|
3436
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GroupMembers;
|
|
3437
|
+
getString(): string;
|
|
3438
|
+
}
|
|
3439
|
+
|
|
3330
3440
|
declare class FootprintSheetname extends SxClass {
|
|
3331
3441
|
static token: string;
|
|
3332
3442
|
static parentToken: string;
|
|
@@ -3786,14 +3896,27 @@ declare class ZoneFilledPolygon extends SxClass {
|
|
|
3786
3896
|
constructor(params?: {
|
|
3787
3897
|
layer?: Layer;
|
|
3788
3898
|
pts?: Pts;
|
|
3899
|
+
island?: boolean;
|
|
3789
3900
|
});
|
|
3901
|
+
private _island;
|
|
3790
3902
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneFilledPolygon;
|
|
3791
3903
|
get layer(): Layer | undefined;
|
|
3792
3904
|
set layer(value: Layer | undefined);
|
|
3793
3905
|
get pts(): Pts | undefined;
|
|
3794
3906
|
set pts(value: Pts | undefined);
|
|
3907
|
+
get island(): boolean;
|
|
3908
|
+
set island(value: boolean);
|
|
3795
3909
|
getChildren(): SxClass[];
|
|
3796
3910
|
}
|
|
3911
|
+
declare class ZoneFilledPolygonIsland extends SxClass {
|
|
3912
|
+
value: boolean;
|
|
3913
|
+
static token: string;
|
|
3914
|
+
static parentToken: string;
|
|
3915
|
+
token: string;
|
|
3916
|
+
constructor(value?: boolean);
|
|
3917
|
+
static fromSexprPrimitives(): ZoneFilledPolygonIsland;
|
|
3918
|
+
getString(): string;
|
|
3919
|
+
}
|
|
3797
3920
|
|
|
3798
3921
|
declare class ZoneHatch extends SxClass {
|
|
3799
3922
|
style: string;
|
|
@@ -4033,6 +4156,7 @@ interface FootprintConstructorParams {
|
|
|
4033
4156
|
solderMaskMargin?: number | FootprintSolderMaskMargin;
|
|
4034
4157
|
solderPasteMargin?: number | FootprintSolderPasteMargin;
|
|
4035
4158
|
solderPasteRatio?: number | FootprintSolderPasteRatio;
|
|
4159
|
+
solderPasteMarginRatio?: number | FootprintSolderPasteMarginRatio;
|
|
4036
4160
|
clearance?: number | FootprintClearance;
|
|
4037
4161
|
zoneConnect?: number | FootprintZoneConnect;
|
|
4038
4162
|
thermalWidth?: number | FootprintThermalWidth;
|
|
@@ -4053,11 +4177,13 @@ interface FootprintConstructorParams {
|
|
|
4053
4177
|
fpRects?: FpRect[];
|
|
4054
4178
|
fpCircles?: FpCircle[];
|
|
4055
4179
|
fpArcs?: FpArc[];
|
|
4180
|
+
fpCurves?: FpCurve[];
|
|
4056
4181
|
fpPolys?: FpPoly[];
|
|
4057
4182
|
points?: FootprintPoint[];
|
|
4058
4183
|
pads?: FootprintPad[];
|
|
4059
4184
|
models?: FootprintModel[];
|
|
4060
4185
|
zones?: Zone[];
|
|
4186
|
+
groups?: Group[];
|
|
4061
4187
|
}
|
|
4062
4188
|
declare class Footprint extends SxClass {
|
|
4063
4189
|
static token: string;
|
|
@@ -4102,11 +4228,13 @@ declare class Footprint extends SxClass {
|
|
|
4102
4228
|
private _fpRects;
|
|
4103
4229
|
private _fpCircles;
|
|
4104
4230
|
private _fpArcs;
|
|
4231
|
+
private _fpCurves;
|
|
4105
4232
|
private _fpPolys;
|
|
4106
4233
|
private _points;
|
|
4107
4234
|
private _fpPads;
|
|
4108
4235
|
private _models;
|
|
4109
4236
|
private _zones;
|
|
4237
|
+
private _groups;
|
|
4110
4238
|
constructor(params?: FootprintConstructorParams);
|
|
4111
4239
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Footprint;
|
|
4112
4240
|
get libraryLink(): string | undefined;
|
|
@@ -4147,6 +4275,8 @@ declare class Footprint extends SxClass {
|
|
|
4147
4275
|
set solderPasteMargin(value: FootprintSolderPasteMargin | number | undefined);
|
|
4148
4276
|
get solderPasteRatio(): FootprintSolderPasteRatio | undefined;
|
|
4149
4277
|
set solderPasteRatio(value: FootprintSolderPasteRatio | number | undefined);
|
|
4278
|
+
get solderPasteMarginRatio(): FootprintSolderPasteMarginRatio | undefined;
|
|
4279
|
+
set solderPasteMarginRatio(value: FootprintSolderPasteMarginRatio | number | undefined);
|
|
4150
4280
|
get clearance(): FootprintClearance | undefined;
|
|
4151
4281
|
set clearance(value: FootprintClearance | number | undefined);
|
|
4152
4282
|
get zoneConnect(): FootprintZoneConnect | undefined;
|
|
@@ -4187,6 +4317,8 @@ declare class Footprint extends SxClass {
|
|
|
4187
4317
|
set fpCircles(value: FpCircle[]);
|
|
4188
4318
|
get fpArcs(): FpArc[];
|
|
4189
4319
|
set fpArcs(value: FpArc[]);
|
|
4320
|
+
get fpCurves(): FpCurve[];
|
|
4321
|
+
set fpCurves(value: FpCurve[]);
|
|
4190
4322
|
get fpPolys(): FpPoly[];
|
|
4191
4323
|
set fpPolys(value: FpPoly[]);
|
|
4192
4324
|
get points(): FootprintPoint[];
|
|
@@ -4197,6 +4329,8 @@ declare class Footprint extends SxClass {
|
|
|
4197
4329
|
set models(value: FootprintModel[]);
|
|
4198
4330
|
get zones(): Zone[];
|
|
4199
4331
|
set zones(value: Zone[]);
|
|
4332
|
+
get groups(): Group[];
|
|
4333
|
+
set groups(value: Group[]);
|
|
4200
4334
|
getChildren(): SxClass[];
|
|
4201
4335
|
getString(): string;
|
|
4202
4336
|
}
|
|
@@ -4673,6 +4807,7 @@ interface GrTextConstructorParams {
|
|
|
4673
4807
|
uuid?: Uuid | string;
|
|
4674
4808
|
effects?: TextEffects;
|
|
4675
4809
|
renderCaches?: GrTextRenderCache[];
|
|
4810
|
+
locked?: boolean;
|
|
4676
4811
|
}
|
|
4677
4812
|
declare class GrText extends SxClass {
|
|
4678
4813
|
static token: string;
|
|
@@ -4684,6 +4819,7 @@ declare class GrText extends SxClass {
|
|
|
4684
4819
|
private _sxUuid?;
|
|
4685
4820
|
private _sxEffects?;
|
|
4686
4821
|
private _renderCaches;
|
|
4822
|
+
private _locked;
|
|
4687
4823
|
constructor(params?: GrTextConstructorParams | string);
|
|
4688
4824
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrText;
|
|
4689
4825
|
get text(): string;
|
|
@@ -4700,9 +4836,20 @@ declare class GrText extends SxClass {
|
|
|
4700
4836
|
set effects(value: TextEffects | undefined);
|
|
4701
4837
|
get renderCaches(): GrTextRenderCache[];
|
|
4702
4838
|
set renderCaches(value: GrTextRenderCache[]);
|
|
4839
|
+
get locked(): boolean;
|
|
4840
|
+
set locked(value: boolean);
|
|
4703
4841
|
getChildren(): SxClass[];
|
|
4704
4842
|
getString(): string;
|
|
4705
4843
|
}
|
|
4844
|
+
declare class GrTextLocked extends SxClass {
|
|
4845
|
+
value: boolean;
|
|
4846
|
+
static token: string;
|
|
4847
|
+
static parentToken: string;
|
|
4848
|
+
token: string;
|
|
4849
|
+
constructor(value?: boolean);
|
|
4850
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrTextLocked;
|
|
4851
|
+
getString(): string;
|
|
4852
|
+
}
|
|
4706
4853
|
declare class GrTextRenderCache extends SxClass {
|
|
4707
4854
|
static token: string;
|
|
4708
4855
|
static parentToken: string;
|
|
@@ -4873,53 +5020,6 @@ declare class Target extends SxClass {
|
|
|
4873
5020
|
getString(): string;
|
|
4874
5021
|
}
|
|
4875
5022
|
|
|
4876
|
-
interface GroupConstructorParams {
|
|
4877
|
-
name?: string;
|
|
4878
|
-
uuid?: string | Uuid;
|
|
4879
|
-
locked?: boolean;
|
|
4880
|
-
members?: string[];
|
|
4881
|
-
}
|
|
4882
|
-
declare class Group extends SxClass {
|
|
4883
|
-
static token: string;
|
|
4884
|
-
token: string;
|
|
4885
|
-
private _name;
|
|
4886
|
-
private _sxUuid?;
|
|
4887
|
-
private _sxLocked?;
|
|
4888
|
-
private _sxMembers?;
|
|
4889
|
-
constructor(params?: GroupConstructorParams);
|
|
4890
|
-
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Group;
|
|
4891
|
-
get name(): string;
|
|
4892
|
-
set name(value: string);
|
|
4893
|
-
get uuid(): string | undefined;
|
|
4894
|
-
set uuid(value: string | Uuid | undefined);
|
|
4895
|
-
get uuidClass(): Uuid | undefined;
|
|
4896
|
-
get locked(): boolean;
|
|
4897
|
-
set locked(value: boolean);
|
|
4898
|
-
get members(): string[];
|
|
4899
|
-
set members(value: string[]);
|
|
4900
|
-
get membersClass(): GroupMembers | undefined;
|
|
4901
|
-
getChildren(): SxClass[];
|
|
4902
|
-
getString(): string;
|
|
4903
|
-
}
|
|
4904
|
-
declare class GroupLocked extends SxClass {
|
|
4905
|
-
static token: string;
|
|
4906
|
-
static parentToken: string;
|
|
4907
|
-
token: string;
|
|
4908
|
-
value: boolean;
|
|
4909
|
-
constructor(value: boolean);
|
|
4910
|
-
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GroupLocked;
|
|
4911
|
-
getString(): string;
|
|
4912
|
-
}
|
|
4913
|
-
declare class GroupMembers extends SxClass {
|
|
4914
|
-
static token: string;
|
|
4915
|
-
static parentToken: string;
|
|
4916
|
-
token: string;
|
|
4917
|
-
members: string[];
|
|
4918
|
-
constructor(members: string[]);
|
|
4919
|
-
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GroupMembers;
|
|
4920
|
-
getString(): string;
|
|
4921
|
-
}
|
|
4922
|
-
|
|
4923
5023
|
declare class Generated extends SxClass {
|
|
4924
5024
|
static token: string;
|
|
4925
5025
|
static parentToken: string;
|
|
@@ -6320,4 +6420,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
|
|
|
6320
6420
|
declare const parseKicadPcb: (sexpr: string) => KicadPcb;
|
|
6321
6421
|
declare const parseKicadMod: (sexpr: string) => Footprint;
|
|
6322
6422
|
|
|
6323
|
-
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, GrArcLocked, 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 };
|
|
6423
|
+
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, FootprintSolderPasteMarginRatio, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintUnit, FootprintUnitName, FootprintUnitPins, FootprintUnits, FootprintVersion, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, FpCircleNet, FpCurve, type FpCurveConstructorParams, FpCurveLocked, 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, GrArcLocked, 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, GrTextLocked, 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, ZoneFilledPolygonIsland, ZoneHatch, ZoneKeepout, ZoneKeepoutCopperpour, ZoneKeepoutFootprints, ZoneKeepoutPads, ZoneKeepoutTracks, ZoneKeepoutVias, ZoneMinThickness, ZoneName, ZoneNet, ZoneNetName, ZonePlacement, ZonePlacementEnabled, ZonePlacementSheetname, ZonePolygon, ZonePriority, parseKicadMod, parseKicadPcb, parseKicadSch, parseKicadSexpr };
|