kicadts 0.0.12 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.ts +228 -5
  2. package/dist/index.js +1020 -189
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1648,6 +1648,7 @@ declare class FootprintAttr extends SxClass {
1648
1648
  private _boardOnly;
1649
1649
  private _excludeFromPosFiles;
1650
1650
  private _excludeFromBom;
1651
+ private _allowSoldermaskBridges;
1651
1652
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintAttr;
1652
1653
  private applyFlag;
1653
1654
  get type(): string | undefined;
@@ -1658,6 +1659,8 @@ declare class FootprintAttr extends SxClass {
1658
1659
  set excludeFromPosFiles(value: boolean);
1659
1660
  get excludeFromBom(): boolean;
1660
1661
  set excludeFromBom(value: boolean);
1662
+ get allowSoldermaskBridges(): boolean;
1663
+ set allowSoldermaskBridges(value: boolean);
1661
1664
  getChildren(): SxClass[];
1662
1665
  getString(): string;
1663
1666
  }
@@ -2137,12 +2140,16 @@ declare class PadPrimitiveGrCircleEnd extends PadPrimitiveGrCirclePoint {
2137
2140
  constructor(x: number, y: number);
2138
2141
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PadPrimitiveGrCircleEnd;
2139
2142
  }
2140
- declare class PadPrimitiveGrCircleFill extends SxPrimitiveBoolean {
2143
+ declare class PadPrimitiveGrCircleFill extends SxClass {
2141
2144
  static token: string;
2142
2145
  static parentToken: string;
2143
2146
  token: string;
2144
- constructor(value?: boolean);
2147
+ value: string;
2148
+ constructor(value?: boolean | string);
2145
2149
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PadPrimitiveGrCircleFill;
2150
+ get filled(): boolean;
2151
+ set filled(value: boolean);
2152
+ getString(): string;
2146
2153
  }
2147
2154
 
2148
2155
  type PadPrimitiveGraphic = PadPrimitiveGrPoly | PadPrimitiveGrLine | PadPrimitiveGrArc | PadPrimitiveGrCircle;
@@ -2870,11 +2877,12 @@ declare class FpArcEnd extends SxClass {
2870
2877
  getString(): string;
2871
2878
  }
2872
2879
 
2873
- declare class FpPolyFill extends SxPrimitiveBoolean {
2880
+ declare class FpPolyFill extends SxClass {
2874
2881
  static token: string;
2875
2882
  static parentToken: string;
2876
2883
  token: string;
2877
- constructor(filled: boolean);
2884
+ value: string;
2885
+ constructor(value: string | boolean);
2878
2886
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FpPolyFill;
2879
2887
  get filled(): boolean;
2880
2888
  set filled(filled: boolean);
@@ -3047,6 +3055,7 @@ declare class FootprintModel extends SxClass {
3047
3055
  private _offset?;
3048
3056
  private _scale?;
3049
3057
  private _rotate?;
3058
+ private _hide;
3050
3059
  constructor(path: string);
3051
3060
  static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintModel;
3052
3061
  get path(): string;
@@ -3057,6 +3066,8 @@ declare class FootprintModel extends SxClass {
3057
3066
  set scale(value: ModelVector | undefined);
3058
3067
  get rotate(): ModelVector | undefined;
3059
3068
  set rotate(value: ModelVector | undefined);
3069
+ get hide(): boolean;
3070
+ set hide(value: boolean);
3060
3071
  getChildren(): SxClass[];
3061
3072
  getString(): string;
3062
3073
  }
@@ -3232,6 +3243,214 @@ declare class Footprint extends SxClass {
3232
3243
  getString(): string;
3233
3244
  }
3234
3245
 
3246
+ interface GrArcPoint {
3247
+ x: number;
3248
+ y: number;
3249
+ }
3250
+ interface GrArcConstructorParams {
3251
+ start?: GrArcStart | GrArcPoint;
3252
+ mid?: GrArcMid | GrArcPoint;
3253
+ end?: GrArcEnd | GrArcPoint;
3254
+ layer?: Layer | string | Array<string | number>;
3255
+ width?: Width | number;
3256
+ stroke?: Stroke;
3257
+ tstamp?: Tstamp | string;
3258
+ uuid?: Uuid | string;
3259
+ }
3260
+ declare class GrArc extends SxClass {
3261
+ static token: string;
3262
+ token: string;
3263
+ private _sxStart?;
3264
+ private _sxMid?;
3265
+ private _sxEnd?;
3266
+ private _sxLayer?;
3267
+ private _sxWidth?;
3268
+ private _sxStroke?;
3269
+ private _sxTstamp?;
3270
+ private _sxUuid?;
3271
+ constructor(params?: GrArcConstructorParams);
3272
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrArc;
3273
+ get start(): GrArcStart | undefined;
3274
+ set start(value: GrArcStart | GrArcPoint | undefined);
3275
+ get mid(): GrArcMid | undefined;
3276
+ set mid(value: GrArcMid | GrArcPoint | undefined);
3277
+ get end(): GrArcEnd | undefined;
3278
+ set end(value: GrArcEnd | GrArcPoint | undefined);
3279
+ get startPoint(): GrArcPoint | undefined;
3280
+ get midPoint(): GrArcPoint | undefined;
3281
+ get endPoint(): GrArcPoint | undefined;
3282
+ get layer(): Layer | undefined;
3283
+ set layer(value: Layer | string | Array<string | number> | undefined);
3284
+ get width(): number | undefined;
3285
+ set width(value: Width | number | undefined);
3286
+ get widthClass(): Width | undefined;
3287
+ set widthClass(value: Width | undefined);
3288
+ get stroke(): Stroke | undefined;
3289
+ set stroke(value: Stroke | undefined);
3290
+ get tstamp(): Tstamp | undefined;
3291
+ set tstamp(value: Tstamp | string | undefined);
3292
+ get uuid(): Uuid | undefined;
3293
+ set uuid(value: Uuid | string | undefined);
3294
+ getChildren(): SxClass[];
3295
+ private normalizeStart;
3296
+ private normalizeMid;
3297
+ private normalizeEnd;
3298
+ }
3299
+ declare class GrArcStart extends SxClass {
3300
+ x: number;
3301
+ y: number;
3302
+ static token: string;
3303
+ static parentToken: string;
3304
+ token: string;
3305
+ constructor(x: number, y: number);
3306
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrArcStart;
3307
+ toObject(): GrArcPoint;
3308
+ getChildren(): SxClass[];
3309
+ getString(): string;
3310
+ }
3311
+ declare class GrArcMid extends SxClass {
3312
+ x: number;
3313
+ y: number;
3314
+ static token: string;
3315
+ static parentToken: string;
3316
+ token: string;
3317
+ constructor(x: number, y: number);
3318
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrArcMid;
3319
+ toObject(): GrArcPoint;
3320
+ getChildren(): SxClass[];
3321
+ getString(): string;
3322
+ }
3323
+ declare class GrArcEnd extends SxClass {
3324
+ x: number;
3325
+ y: number;
3326
+ static token: string;
3327
+ static parentToken: string;
3328
+ token: string;
3329
+ constructor(x: number, y: number);
3330
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrArcEnd;
3331
+ toObject(): GrArcPoint;
3332
+ getChildren(): SxClass[];
3333
+ getString(): string;
3334
+ }
3335
+
3336
+ interface GrCirclePoint {
3337
+ x: number;
3338
+ y: number;
3339
+ }
3340
+ interface GrCircleConstructorParams {
3341
+ center?: GrCircleCenter | GrCirclePoint;
3342
+ end?: GrCircleEnd | GrCirclePoint;
3343
+ layer?: Layer | string | Array<string | number>;
3344
+ width?: Width | number;
3345
+ stroke?: Stroke;
3346
+ fill?: PadPrimitiveGrCircleFill | string;
3347
+ tstamp?: Tstamp | string;
3348
+ uuid?: Uuid | string;
3349
+ }
3350
+ declare class GrCircle extends SxClass {
3351
+ static token: string;
3352
+ token: string;
3353
+ private _sxCenter?;
3354
+ private _sxEnd?;
3355
+ private _sxLayer?;
3356
+ private _sxWidth?;
3357
+ private _sxStroke?;
3358
+ private _sxFill?;
3359
+ private _sxTstamp?;
3360
+ private _sxUuid?;
3361
+ constructor(params?: GrCircleConstructorParams);
3362
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrCircle;
3363
+ get center(): GrCircleCenter | undefined;
3364
+ set center(value: GrCircleCenter | GrCirclePoint | undefined);
3365
+ get end(): GrCircleEnd | undefined;
3366
+ set end(value: GrCircleEnd | GrCirclePoint | undefined);
3367
+ get centerPoint(): GrCirclePoint | undefined;
3368
+ get endPoint(): GrCirclePoint | undefined;
3369
+ get layer(): Layer | undefined;
3370
+ set layer(value: Layer | string | Array<string | number> | undefined);
3371
+ get width(): number | undefined;
3372
+ set width(value: Width | number | undefined);
3373
+ get widthClass(): Width | undefined;
3374
+ set widthClass(value: Width | undefined);
3375
+ get stroke(): Stroke | undefined;
3376
+ set stroke(value: Stroke | undefined);
3377
+ get fill(): PadPrimitiveGrCircleFill | undefined;
3378
+ set fill(value: PadPrimitiveGrCircleFill | string | undefined);
3379
+ get tstamp(): Tstamp | undefined;
3380
+ set tstamp(value: Tstamp | string | undefined);
3381
+ get uuid(): Uuid | undefined;
3382
+ set uuid(value: Uuid | string | undefined);
3383
+ getChildren(): SxClass[];
3384
+ private normalizeCenter;
3385
+ private normalizeEnd;
3386
+ }
3387
+ declare class GrCircleCenter extends SxClass {
3388
+ x: number;
3389
+ y: number;
3390
+ static token: string;
3391
+ static parentToken: string;
3392
+ token: string;
3393
+ constructor(x: number, y: number);
3394
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrCircleCenter;
3395
+ toObject(): GrCirclePoint;
3396
+ getChildren(): SxClass[];
3397
+ getString(): string;
3398
+ }
3399
+ declare class GrCircleEnd extends SxClass {
3400
+ x: number;
3401
+ y: number;
3402
+ static token: string;
3403
+ static parentToken: string;
3404
+ token: string;
3405
+ constructor(x: number, y: number);
3406
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrCircleEnd;
3407
+ toObject(): GrCirclePoint;
3408
+ getChildren(): SxClass[];
3409
+ getString(): string;
3410
+ }
3411
+
3412
+ interface GrCurveConstructorParams {
3413
+ points?: Pts | Xy[] | Array<{
3414
+ x: number;
3415
+ y: number;
3416
+ }>;
3417
+ layer?: Layer | string | Array<string | number>;
3418
+ width?: Width | number;
3419
+ stroke?: Stroke;
3420
+ tstamp?: Tstamp | string;
3421
+ uuid?: Uuid | string;
3422
+ }
3423
+ declare class GrCurve extends SxClass {
3424
+ static token: string;
3425
+ token: string;
3426
+ private _sxPts?;
3427
+ private _sxLayer?;
3428
+ private _sxWidth?;
3429
+ private _sxStroke?;
3430
+ private _sxTstamp?;
3431
+ private _sxUuid?;
3432
+ constructor(params?: GrCurveConstructorParams);
3433
+ static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrCurve;
3434
+ get points(): Pts | undefined;
3435
+ set points(value: Pts | Xy[] | Array<{
3436
+ x: number;
3437
+ y: number;
3438
+ }> | undefined);
3439
+ get layer(): Layer | undefined;
3440
+ set layer(value: Layer | string | Array<string | number> | undefined);
3441
+ get width(): number | undefined;
3442
+ set width(value: Width | number | undefined);
3443
+ get widthClass(): Width | undefined;
3444
+ set widthClass(value: Width | undefined);
3445
+ get stroke(): Stroke | undefined;
3446
+ set stroke(value: Stroke | undefined);
3447
+ get tstamp(): Tstamp | undefined;
3448
+ set tstamp(value: Tstamp | string | undefined);
3449
+ get uuid(): Uuid | undefined;
3450
+ set uuid(value: Uuid | string | undefined);
3451
+ getChildren(): SxClass[];
3452
+ }
3453
+
3235
3454
  interface GrLinePoint {
3236
3455
  x: number;
3237
3456
  y: number;
@@ -3315,6 +3534,7 @@ interface GrTextConstructorParams {
3315
3534
  text?: string;
3316
3535
  position?: AtInput | Xy | GrTextPosition;
3317
3536
  layer?: Layer | string | Array<string | number>;
3537
+ tstamp?: Tstamp | string;
3318
3538
  uuid?: Uuid | string;
3319
3539
  effects?: TextEffects;
3320
3540
  }
@@ -3324,6 +3544,7 @@ declare class GrText extends SxClass {
3324
3544
  private _text;
3325
3545
  private _sxPosition?;
3326
3546
  private _sxLayer?;
3547
+ private _sxTstamp?;
3327
3548
  private _sxUuid?;
3328
3549
  private _sxEffects?;
3329
3550
  constructor(params?: GrTextConstructorParams | string);
@@ -3334,6 +3555,8 @@ declare class GrText extends SxClass {
3334
3555
  set position(value: AtInput | Xy | GrTextPosition | undefined);
3335
3556
  get layer(): Layer | undefined;
3336
3557
  set layer(value: Layer | string | Array<string | number> | undefined);
3558
+ get tstamp(): Tstamp | undefined;
3559
+ set tstamp(value: Tstamp | string | undefined);
3337
3560
  get uuid(): Uuid | undefined;
3338
3561
  set uuid(value: Uuid | string | undefined);
3339
3562
  get effects(): TextEffects | undefined;
@@ -4559,4 +4782,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
4559
4782
  declare const parseKicadPcb: (sexpr: string) => KicadPcb;
4560
4783
  declare const parseKicadMod: (sexpr: string) => Footprint;
4561
4784
 
4562
- export { At, type AtInput, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Color, Dnp, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, FpLine, type FpLineConstructorParams, FpLineEnd, FpLineStart, FpPoly, type FpPolyConstructorParams, FpPolyFill, FpPolyLocked, FpRect, type FpRectConstructorParams, FpRectEnd, FpRectFill, FpRectStart, FpText, FpTextBox, FpTextBoxAngle, type FpTextBoxConstructorParams, FpTextBoxEnd, FpTextBoxStart, type FpTextConstructorParams, type FpTextType, GlobalLabel, type GlobalLabelConstructorParams, type GlobalLabelShape, GrLine, GrLineAngle, type GrLineConstructorParams, GrLineEnd, GrLineLocked, type GrLinePoint, GrLineStart, GrText, type GrTextConstructorParams, type GrTextPosition, Image, type ImageConstructorParams, ImageData, ImageScale, InBom, Junction, type JunctionConstructorParams, JunctionDiameter, KicadPcb, type KicadPcbConstructorParams, KicadSch, type KicadSchConstructorParams, KicadSchGenerator, KicadSchGeneratorVersion, KicadSchVersion, Label, type LabelConstructorParams, Layer, Layers, LibSymbols, 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, PadPrimitiveGrLine, PadPrimitiveGrPoly, PadPrimitives, PadRectDelta, PadRoundrectRratio, PadSize, type PadSizeInput, PadSolderMaskMargin, PadSolderPasteMargin, PadSolderPasteMarginRatio, PadTeardrops, PadThermalBridgeAngle, PadThermalGap, PadThermalWidth, PadZoneConnect, Paper, PcbGeneral, PcbGeneralLegacyTeardrops, PcbGeneralThickness, PcbGenerator, PcbGeneratorVersion, PcbLayerDefinition, PcbLayers, PcbNet, PcbPlotParams, PcbVersion, PlotParamCreateGerberJobFile, PlotParamCrossoutDnpOnFab, PlotParamDashedLineDashRatio, PlotParamDashedLineGapRatio, PlotParamDisableApertMacros, PlotParamDrillShape, PlotParamDxfImperialUnits, PlotParamDxfPolygonMode, PlotParamDxfUsePcbnewFont, PlotParamExcludeEdgeLayer, PlotParamHideDnpOnFab, PlotParamHpglPenDiameter, PlotParamHpglPenNumber, PlotParamHpglPenOverlay, PlotParamHpglPenSpeed, PlotParamLayerSelection, PlotParamLineWidth, PlotParamMirror, PlotParamMode, PlotParamOutputDirectory, PlotParamOutputFormat, PlotParamPadOnSilk, PlotParamPdfBackFpPropertyPopups, PlotParamPdfFrontFpPropertyPopups, PlotParamPdfMetadata, PlotParamPdfSingleDocument, PlotParamPlotBlackAndWhite, PlotParamPlotFrameRef, PlotParamPlotInvisible, PlotParamPlotInvisibleText, PlotParamPlotOnAllLayers, PlotParamPlotOnAllLayersSelection, PlotParamPlotOtherText, PlotParamPlotPadNumbers, PlotParamPlotReference, PlotParamPlotValue, PlotParamProperty, PlotParamPsA4Output, PlotParamPsNegative, PlotParamScaleSelection, PlotParamSketchDnpOnFab, PlotParamSketchPadsOnFab, PlotParamSubtractMaskFromSilk, PlotParamSvgPrecision, PlotParamUseAuxOrigin, PlotParamUseGerberAdvancedAttributes, PlotParamUseGerberAttributes, PlotParamUseGerberExtensions, PlotParamViaOnMask, Property, type PropertyConstructorParams, PropertyHide, PropertyUnlocked, Pts, type RGBAColor, RenderCache, 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, SymbolPower, SymbolProperty, SymbolPropertyId, SymbolRectangle, SymbolRectangleEnd, SymbolRectangleFill, SymbolRectangleStart, SymbolText, SymbolUnit, TextEffects, type TextEffectsConstructorParams, TextEffectsFont, TextEffectsFontFace, 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 };
4785
+ export { At, type AtInput, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Color, Dnp, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, FpLine, type FpLineConstructorParams, FpLineEnd, FpLineStart, FpPoly, type FpPolyConstructorParams, FpPolyFill, FpPolyLocked, FpRect, type FpRectConstructorParams, FpRectEnd, FpRectFill, FpRectStart, FpText, FpTextBox, FpTextBoxAngle, type FpTextBoxConstructorParams, FpTextBoxEnd, FpTextBoxStart, type FpTextConstructorParams, type FpTextType, GlobalLabel, type GlobalLabelConstructorParams, type GlobalLabelShape, GrArc, type GrArcConstructorParams, GrArcEnd, GrArcMid, type GrArcPoint, GrArcStart, GrCircle, GrCircleCenter, type GrCircleConstructorParams, GrCircleEnd, type GrCirclePoint, GrCurve, type GrCurveConstructorParams, GrLine, GrLineAngle, type GrLineConstructorParams, GrLineEnd, GrLineLocked, type GrLinePoint, GrLineStart, GrText, type GrTextConstructorParams, type GrTextPosition, Image, type ImageConstructorParams, ImageData, ImageScale, InBom, Junction, type JunctionConstructorParams, JunctionDiameter, KicadPcb, type KicadPcbConstructorParams, KicadSch, type KicadSchConstructorParams, KicadSchGenerator, KicadSchGeneratorVersion, KicadSchVersion, Label, type LabelConstructorParams, Layer, Layers, LibSymbols, type ModelVector, NoConnect, type NoConnectConstructorParams, OnBoard, PadChamfer, PadChamferRatio, PadClearance, PadDieLength, PadDrill, PadDrillOffset, PadLayers, type PadLayersInput, PadNet, PadOptions, type PadOptionsAnchorShape, type PadOptionsClearanceType, PadPinFunction, PadPinType, PadPrimitiveGrArc, type PadPrimitiveGrArcConstructorParams, PadPrimitiveGrCircle, type PadPrimitiveGrCircleConstructorParams, PadPrimitiveGrCircleFill, PadPrimitiveGrLine, PadPrimitiveGrPoly, PadPrimitives, PadRectDelta, PadRoundrectRratio, PadSize, type PadSizeInput, PadSolderMaskMargin, PadSolderPasteMargin, PadSolderPasteMarginRatio, PadTeardrops, PadThermalBridgeAngle, PadThermalGap, PadThermalWidth, PadZoneConnect, Paper, PcbGeneral, PcbGeneralLegacyTeardrops, PcbGeneralThickness, PcbGenerator, PcbGeneratorVersion, PcbLayerDefinition, PcbLayers, PcbNet, PcbPlotParams, PcbVersion, PlotParamCreateGerberJobFile, PlotParamCrossoutDnpOnFab, PlotParamDashedLineDashRatio, PlotParamDashedLineGapRatio, PlotParamDisableApertMacros, PlotParamDrillShape, PlotParamDxfImperialUnits, PlotParamDxfPolygonMode, PlotParamDxfUsePcbnewFont, PlotParamExcludeEdgeLayer, PlotParamHideDnpOnFab, PlotParamHpglPenDiameter, PlotParamHpglPenNumber, PlotParamHpglPenOverlay, PlotParamHpglPenSpeed, PlotParamLayerSelection, PlotParamLineWidth, PlotParamMirror, PlotParamMode, PlotParamOutputDirectory, PlotParamOutputFormat, PlotParamPadOnSilk, PlotParamPdfBackFpPropertyPopups, PlotParamPdfFrontFpPropertyPopups, PlotParamPdfMetadata, PlotParamPdfSingleDocument, PlotParamPlotBlackAndWhite, PlotParamPlotFrameRef, PlotParamPlotInvisible, PlotParamPlotInvisibleText, PlotParamPlotOnAllLayers, PlotParamPlotOnAllLayersSelection, PlotParamPlotOtherText, PlotParamPlotPadNumbers, PlotParamPlotReference, PlotParamPlotValue, PlotParamProperty, PlotParamPsA4Output, PlotParamPsNegative, PlotParamScaleSelection, PlotParamSketchDnpOnFab, PlotParamSketchPadsOnFab, PlotParamSubtractMaskFromSilk, PlotParamSvgPrecision, PlotParamUseAuxOrigin, PlotParamUseGerberAdvancedAttributes, PlotParamUseGerberAttributes, PlotParamUseGerberExtensions, PlotParamViaOnMask, Property, type PropertyConstructorParams, PropertyHide, PropertyUnlocked, Pts, type RGBAColor, RenderCache, 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, SymbolPower, SymbolProperty, SymbolPropertyId, SymbolRectangle, SymbolRectangleEnd, SymbolRectangleFill, SymbolRectangleStart, SymbolText, SymbolUnit, TextEffects, type TextEffectsConstructorParams, TextEffectsFont, TextEffectsFontFace, 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 };