kicadts 0.0.37 → 0.0.39
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 +139 -48
- package/dist/index.js +600 -263
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2615,6 +2615,7 @@ declare class PadTeardrops extends SxClass {
|
|
|
2615
2615
|
private _bestWidthRatio?;
|
|
2616
2616
|
private _maxWidth?;
|
|
2617
2617
|
private _filterRatio?;
|
|
2618
|
+
private _curvePoints?;
|
|
2618
2619
|
private _curvedEdges?;
|
|
2619
2620
|
private _enabled?;
|
|
2620
2621
|
private _allowTwoSegments?;
|
|
@@ -2630,6 +2631,8 @@ declare class PadTeardrops extends SxClass {
|
|
|
2630
2631
|
set maxWidth(value: number | undefined);
|
|
2631
2632
|
get filterRatio(): number | undefined;
|
|
2632
2633
|
set filterRatio(value: number | undefined);
|
|
2634
|
+
get curvePoints(): number | undefined;
|
|
2635
|
+
set curvePoints(value: number | undefined);
|
|
2633
2636
|
get curvedEdges(): boolean | undefined;
|
|
2634
2637
|
set curvedEdges(value: boolean | undefined);
|
|
2635
2638
|
get enabled(): boolean | undefined;
|
|
@@ -3265,6 +3268,60 @@ declare class FpArcEnd extends SxClass {
|
|
|
3265
3268
|
getString(): string;
|
|
3266
3269
|
}
|
|
3267
3270
|
|
|
3271
|
+
interface FpCurveConstructorParams {
|
|
3272
|
+
points?: Pts | Xy[] | Array<{
|
|
3273
|
+
x: number;
|
|
3274
|
+
y: number;
|
|
3275
|
+
}>;
|
|
3276
|
+
layer?: Layer | string | Array<string | number>;
|
|
3277
|
+
width?: Width | number;
|
|
3278
|
+
stroke?: Stroke;
|
|
3279
|
+
tstamp?: Tstamp | string;
|
|
3280
|
+
uuid?: Uuid | string;
|
|
3281
|
+
locked?: boolean;
|
|
3282
|
+
}
|
|
3283
|
+
declare class FpCurve extends SxClass {
|
|
3284
|
+
static token: string;
|
|
3285
|
+
static parentToken: string;
|
|
3286
|
+
token: string;
|
|
3287
|
+
private _sxPts?;
|
|
3288
|
+
private _sxLayer?;
|
|
3289
|
+
private _sxWidth?;
|
|
3290
|
+
private _sxStroke?;
|
|
3291
|
+
private _sxTstamp?;
|
|
3292
|
+
private _sxUuid?;
|
|
3293
|
+
private _locked;
|
|
3294
|
+
constructor(params?: FpCurveConstructorParams);
|
|
3295
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FpCurve;
|
|
3296
|
+
get points(): Pts | undefined;
|
|
3297
|
+
set points(value: Pts | Xy[] | Array<{
|
|
3298
|
+
x: number;
|
|
3299
|
+
y: number;
|
|
3300
|
+
}> | undefined);
|
|
3301
|
+
get layer(): Layer | undefined;
|
|
3302
|
+
set layer(value: Layer | string | Array<string | number> | undefined);
|
|
3303
|
+
get width(): number | undefined;
|
|
3304
|
+
set width(value: Width | number | undefined);
|
|
3305
|
+
get stroke(): Stroke | undefined;
|
|
3306
|
+
set stroke(value: Stroke | undefined);
|
|
3307
|
+
get tstamp(): Tstamp | undefined;
|
|
3308
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
3309
|
+
get uuid(): Uuid | undefined;
|
|
3310
|
+
set uuid(value: Uuid | string | undefined);
|
|
3311
|
+
get locked(): boolean;
|
|
3312
|
+
set locked(value: boolean);
|
|
3313
|
+
getChildren(): SxClass[];
|
|
3314
|
+
}
|
|
3315
|
+
declare class FpCurveLocked extends SxClass {
|
|
3316
|
+
value: boolean;
|
|
3317
|
+
static token: string;
|
|
3318
|
+
static parentToken: string;
|
|
3319
|
+
token: string;
|
|
3320
|
+
constructor(value?: boolean);
|
|
3321
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FpCurveLocked;
|
|
3322
|
+
getString(): string;
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3268
3325
|
declare class FpPolyFill extends SxClass {
|
|
3269
3326
|
static token: string;
|
|
3270
3327
|
static parentToken: string;
|
|
@@ -3327,6 +3384,53 @@ declare class FpPoly extends SxClass {
|
|
|
3327
3384
|
getChildren(): SxClass[];
|
|
3328
3385
|
}
|
|
3329
3386
|
|
|
3387
|
+
interface GroupConstructorParams {
|
|
3388
|
+
name?: string;
|
|
3389
|
+
uuid?: string | Uuid;
|
|
3390
|
+
locked?: boolean;
|
|
3391
|
+
members?: string[];
|
|
3392
|
+
}
|
|
3393
|
+
declare class Group extends SxClass {
|
|
3394
|
+
static token: string;
|
|
3395
|
+
token: string;
|
|
3396
|
+
private _name;
|
|
3397
|
+
private _sxUuid?;
|
|
3398
|
+
private _sxLocked?;
|
|
3399
|
+
private _sxMembers?;
|
|
3400
|
+
constructor(params?: GroupConstructorParams);
|
|
3401
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Group;
|
|
3402
|
+
get name(): string;
|
|
3403
|
+
set name(value: string);
|
|
3404
|
+
get uuid(): string | undefined;
|
|
3405
|
+
set uuid(value: string | Uuid | undefined);
|
|
3406
|
+
get uuidClass(): Uuid | undefined;
|
|
3407
|
+
get locked(): boolean;
|
|
3408
|
+
set locked(value: boolean);
|
|
3409
|
+
get members(): string[];
|
|
3410
|
+
set members(value: string[]);
|
|
3411
|
+
get membersClass(): GroupMembers | undefined;
|
|
3412
|
+
getChildren(): SxClass[];
|
|
3413
|
+
getString(): string;
|
|
3414
|
+
}
|
|
3415
|
+
declare class GroupLocked extends SxClass {
|
|
3416
|
+
static token: string;
|
|
3417
|
+
static parentToken: string;
|
|
3418
|
+
token: string;
|
|
3419
|
+
value: boolean;
|
|
3420
|
+
constructor(value: boolean);
|
|
3421
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GroupLocked;
|
|
3422
|
+
getString(): string;
|
|
3423
|
+
}
|
|
3424
|
+
declare class GroupMembers extends SxClass {
|
|
3425
|
+
static token: string;
|
|
3426
|
+
static parentToken: string;
|
|
3427
|
+
token: string;
|
|
3428
|
+
members: string[];
|
|
3429
|
+
constructor(members: string[]);
|
|
3430
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GroupMembers;
|
|
3431
|
+
getString(): string;
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3330
3434
|
declare class FootprintSheetname extends SxClass {
|
|
3331
3435
|
static token: string;
|
|
3332
3436
|
static parentToken: string;
|
|
@@ -3786,14 +3890,27 @@ declare class ZoneFilledPolygon extends SxClass {
|
|
|
3786
3890
|
constructor(params?: {
|
|
3787
3891
|
layer?: Layer;
|
|
3788
3892
|
pts?: Pts;
|
|
3893
|
+
island?: boolean;
|
|
3789
3894
|
});
|
|
3895
|
+
private _island;
|
|
3790
3896
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneFilledPolygon;
|
|
3791
3897
|
get layer(): Layer | undefined;
|
|
3792
3898
|
set layer(value: Layer | undefined);
|
|
3793
3899
|
get pts(): Pts | undefined;
|
|
3794
3900
|
set pts(value: Pts | undefined);
|
|
3901
|
+
get island(): boolean;
|
|
3902
|
+
set island(value: boolean);
|
|
3795
3903
|
getChildren(): SxClass[];
|
|
3796
3904
|
}
|
|
3905
|
+
declare class ZoneFilledPolygonIsland extends SxClass {
|
|
3906
|
+
value: boolean;
|
|
3907
|
+
static token: string;
|
|
3908
|
+
static parentToken: string;
|
|
3909
|
+
token: string;
|
|
3910
|
+
constructor(value?: boolean);
|
|
3911
|
+
static fromSexprPrimitives(): ZoneFilledPolygonIsland;
|
|
3912
|
+
getString(): string;
|
|
3913
|
+
}
|
|
3797
3914
|
|
|
3798
3915
|
declare class ZoneHatch extends SxClass {
|
|
3799
3916
|
style: string;
|
|
@@ -4053,11 +4170,13 @@ interface FootprintConstructorParams {
|
|
|
4053
4170
|
fpRects?: FpRect[];
|
|
4054
4171
|
fpCircles?: FpCircle[];
|
|
4055
4172
|
fpArcs?: FpArc[];
|
|
4173
|
+
fpCurves?: FpCurve[];
|
|
4056
4174
|
fpPolys?: FpPoly[];
|
|
4057
4175
|
points?: FootprintPoint[];
|
|
4058
4176
|
pads?: FootprintPad[];
|
|
4059
4177
|
models?: FootprintModel[];
|
|
4060
4178
|
zones?: Zone[];
|
|
4179
|
+
groups?: Group[];
|
|
4061
4180
|
}
|
|
4062
4181
|
declare class Footprint extends SxClass {
|
|
4063
4182
|
static token: string;
|
|
@@ -4102,11 +4221,13 @@ declare class Footprint extends SxClass {
|
|
|
4102
4221
|
private _fpRects;
|
|
4103
4222
|
private _fpCircles;
|
|
4104
4223
|
private _fpArcs;
|
|
4224
|
+
private _fpCurves;
|
|
4105
4225
|
private _fpPolys;
|
|
4106
4226
|
private _points;
|
|
4107
4227
|
private _fpPads;
|
|
4108
4228
|
private _models;
|
|
4109
4229
|
private _zones;
|
|
4230
|
+
private _groups;
|
|
4110
4231
|
constructor(params?: FootprintConstructorParams);
|
|
4111
4232
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Footprint;
|
|
4112
4233
|
get libraryLink(): string | undefined;
|
|
@@ -4187,6 +4308,8 @@ declare class Footprint extends SxClass {
|
|
|
4187
4308
|
set fpCircles(value: FpCircle[]);
|
|
4188
4309
|
get fpArcs(): FpArc[];
|
|
4189
4310
|
set fpArcs(value: FpArc[]);
|
|
4311
|
+
get fpCurves(): FpCurve[];
|
|
4312
|
+
set fpCurves(value: FpCurve[]);
|
|
4190
4313
|
get fpPolys(): FpPoly[];
|
|
4191
4314
|
set fpPolys(value: FpPoly[]);
|
|
4192
4315
|
get points(): FootprintPoint[];
|
|
@@ -4197,6 +4320,8 @@ declare class Footprint extends SxClass {
|
|
|
4197
4320
|
set models(value: FootprintModel[]);
|
|
4198
4321
|
get zones(): Zone[];
|
|
4199
4322
|
set zones(value: Zone[]);
|
|
4323
|
+
get groups(): Group[];
|
|
4324
|
+
set groups(value: Group[]);
|
|
4200
4325
|
getChildren(): SxClass[];
|
|
4201
4326
|
getString(): string;
|
|
4202
4327
|
}
|
|
@@ -4673,6 +4798,7 @@ interface GrTextConstructorParams {
|
|
|
4673
4798
|
uuid?: Uuid | string;
|
|
4674
4799
|
effects?: TextEffects;
|
|
4675
4800
|
renderCaches?: GrTextRenderCache[];
|
|
4801
|
+
locked?: boolean;
|
|
4676
4802
|
}
|
|
4677
4803
|
declare class GrText extends SxClass {
|
|
4678
4804
|
static token: string;
|
|
@@ -4684,6 +4810,7 @@ declare class GrText extends SxClass {
|
|
|
4684
4810
|
private _sxUuid?;
|
|
4685
4811
|
private _sxEffects?;
|
|
4686
4812
|
private _renderCaches;
|
|
4813
|
+
private _locked;
|
|
4687
4814
|
constructor(params?: GrTextConstructorParams | string);
|
|
4688
4815
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrText;
|
|
4689
4816
|
get text(): string;
|
|
@@ -4700,9 +4827,20 @@ declare class GrText extends SxClass {
|
|
|
4700
4827
|
set effects(value: TextEffects | undefined);
|
|
4701
4828
|
get renderCaches(): GrTextRenderCache[];
|
|
4702
4829
|
set renderCaches(value: GrTextRenderCache[]);
|
|
4830
|
+
get locked(): boolean;
|
|
4831
|
+
set locked(value: boolean);
|
|
4703
4832
|
getChildren(): SxClass[];
|
|
4704
4833
|
getString(): string;
|
|
4705
4834
|
}
|
|
4835
|
+
declare class GrTextLocked extends SxClass {
|
|
4836
|
+
value: boolean;
|
|
4837
|
+
static token: string;
|
|
4838
|
+
static parentToken: string;
|
|
4839
|
+
token: string;
|
|
4840
|
+
constructor(value?: boolean);
|
|
4841
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrTextLocked;
|
|
4842
|
+
getString(): string;
|
|
4843
|
+
}
|
|
4706
4844
|
declare class GrTextRenderCache extends SxClass {
|
|
4707
4845
|
static token: string;
|
|
4708
4846
|
static parentToken: string;
|
|
@@ -4873,53 +5011,6 @@ declare class Target extends SxClass {
|
|
|
4873
5011
|
getString(): string;
|
|
4874
5012
|
}
|
|
4875
5013
|
|
|
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
5014
|
declare class Generated extends SxClass {
|
|
4924
5015
|
static token: string;
|
|
4925
5016
|
static parentToken: string;
|
|
@@ -6320,4 +6411,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
|
|
|
6320
6411
|
declare const parseKicadPcb: (sexpr: string) => KicadPcb;
|
|
6321
6412
|
declare const parseKicadMod: (sexpr: string) => Footprint;
|
|
6322
6413
|
|
|
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 };
|
|
6414
|
+
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, 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 };
|