kicadts 0.0.12 → 0.0.13
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 +209 -1
- package/dist/index.js +903 -145
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3232,6 +3232,214 @@ declare class Footprint extends SxClass {
|
|
|
3232
3232
|
getString(): string;
|
|
3233
3233
|
}
|
|
3234
3234
|
|
|
3235
|
+
interface GrArcPoint {
|
|
3236
|
+
x: number;
|
|
3237
|
+
y: number;
|
|
3238
|
+
}
|
|
3239
|
+
interface GrArcConstructorParams {
|
|
3240
|
+
start?: GrArcStart | GrArcPoint;
|
|
3241
|
+
mid?: GrArcMid | GrArcPoint;
|
|
3242
|
+
end?: GrArcEnd | GrArcPoint;
|
|
3243
|
+
layer?: Layer | string | Array<string | number>;
|
|
3244
|
+
width?: Width | number;
|
|
3245
|
+
stroke?: Stroke;
|
|
3246
|
+
tstamp?: Tstamp | string;
|
|
3247
|
+
uuid?: Uuid | string;
|
|
3248
|
+
}
|
|
3249
|
+
declare class GrArc extends SxClass {
|
|
3250
|
+
static token: string;
|
|
3251
|
+
token: string;
|
|
3252
|
+
private _sxStart?;
|
|
3253
|
+
private _sxMid?;
|
|
3254
|
+
private _sxEnd?;
|
|
3255
|
+
private _sxLayer?;
|
|
3256
|
+
private _sxWidth?;
|
|
3257
|
+
private _sxStroke?;
|
|
3258
|
+
private _sxTstamp?;
|
|
3259
|
+
private _sxUuid?;
|
|
3260
|
+
constructor(params?: GrArcConstructorParams);
|
|
3261
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrArc;
|
|
3262
|
+
get start(): GrArcStart | undefined;
|
|
3263
|
+
set start(value: GrArcStart | GrArcPoint | undefined);
|
|
3264
|
+
get mid(): GrArcMid | undefined;
|
|
3265
|
+
set mid(value: GrArcMid | GrArcPoint | undefined);
|
|
3266
|
+
get end(): GrArcEnd | undefined;
|
|
3267
|
+
set end(value: GrArcEnd | GrArcPoint | undefined);
|
|
3268
|
+
get startPoint(): GrArcPoint | undefined;
|
|
3269
|
+
get midPoint(): GrArcPoint | undefined;
|
|
3270
|
+
get endPoint(): GrArcPoint | undefined;
|
|
3271
|
+
get layer(): Layer | undefined;
|
|
3272
|
+
set layer(value: Layer | string | Array<string | number> | undefined);
|
|
3273
|
+
get width(): number | undefined;
|
|
3274
|
+
set width(value: Width | number | undefined);
|
|
3275
|
+
get widthClass(): Width | undefined;
|
|
3276
|
+
set widthClass(value: Width | undefined);
|
|
3277
|
+
get stroke(): Stroke | undefined;
|
|
3278
|
+
set stroke(value: Stroke | undefined);
|
|
3279
|
+
get tstamp(): Tstamp | undefined;
|
|
3280
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
3281
|
+
get uuid(): Uuid | undefined;
|
|
3282
|
+
set uuid(value: Uuid | string | undefined);
|
|
3283
|
+
getChildren(): SxClass[];
|
|
3284
|
+
private normalizeStart;
|
|
3285
|
+
private normalizeMid;
|
|
3286
|
+
private normalizeEnd;
|
|
3287
|
+
}
|
|
3288
|
+
declare class GrArcStart extends SxClass {
|
|
3289
|
+
x: number;
|
|
3290
|
+
y: number;
|
|
3291
|
+
static token: string;
|
|
3292
|
+
static parentToken: string;
|
|
3293
|
+
token: string;
|
|
3294
|
+
constructor(x: number, y: number);
|
|
3295
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrArcStart;
|
|
3296
|
+
toObject(): GrArcPoint;
|
|
3297
|
+
getChildren(): SxClass[];
|
|
3298
|
+
getString(): string;
|
|
3299
|
+
}
|
|
3300
|
+
declare class GrArcMid extends SxClass {
|
|
3301
|
+
x: number;
|
|
3302
|
+
y: number;
|
|
3303
|
+
static token: string;
|
|
3304
|
+
static parentToken: string;
|
|
3305
|
+
token: string;
|
|
3306
|
+
constructor(x: number, y: number);
|
|
3307
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrArcMid;
|
|
3308
|
+
toObject(): GrArcPoint;
|
|
3309
|
+
getChildren(): SxClass[];
|
|
3310
|
+
getString(): string;
|
|
3311
|
+
}
|
|
3312
|
+
declare class GrArcEnd extends SxClass {
|
|
3313
|
+
x: number;
|
|
3314
|
+
y: number;
|
|
3315
|
+
static token: string;
|
|
3316
|
+
static parentToken: string;
|
|
3317
|
+
token: string;
|
|
3318
|
+
constructor(x: number, y: number);
|
|
3319
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrArcEnd;
|
|
3320
|
+
toObject(): GrArcPoint;
|
|
3321
|
+
getChildren(): SxClass[];
|
|
3322
|
+
getString(): string;
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3325
|
+
interface GrCirclePoint {
|
|
3326
|
+
x: number;
|
|
3327
|
+
y: number;
|
|
3328
|
+
}
|
|
3329
|
+
interface GrCircleConstructorParams {
|
|
3330
|
+
center?: GrCircleCenter | GrCirclePoint;
|
|
3331
|
+
end?: GrCircleEnd | GrCirclePoint;
|
|
3332
|
+
layer?: Layer | string | Array<string | number>;
|
|
3333
|
+
width?: Width | number;
|
|
3334
|
+
stroke?: Stroke;
|
|
3335
|
+
fill?: PadPrimitiveGrCircleFill | string;
|
|
3336
|
+
tstamp?: Tstamp | string;
|
|
3337
|
+
uuid?: Uuid | string;
|
|
3338
|
+
}
|
|
3339
|
+
declare class GrCircle extends SxClass {
|
|
3340
|
+
static token: string;
|
|
3341
|
+
token: string;
|
|
3342
|
+
private _sxCenter?;
|
|
3343
|
+
private _sxEnd?;
|
|
3344
|
+
private _sxLayer?;
|
|
3345
|
+
private _sxWidth?;
|
|
3346
|
+
private _sxStroke?;
|
|
3347
|
+
private _sxFill?;
|
|
3348
|
+
private _sxTstamp?;
|
|
3349
|
+
private _sxUuid?;
|
|
3350
|
+
constructor(params?: GrCircleConstructorParams);
|
|
3351
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrCircle;
|
|
3352
|
+
get center(): GrCircleCenter | undefined;
|
|
3353
|
+
set center(value: GrCircleCenter | GrCirclePoint | undefined);
|
|
3354
|
+
get end(): GrCircleEnd | undefined;
|
|
3355
|
+
set end(value: GrCircleEnd | GrCirclePoint | undefined);
|
|
3356
|
+
get centerPoint(): GrCirclePoint | undefined;
|
|
3357
|
+
get endPoint(): GrCirclePoint | undefined;
|
|
3358
|
+
get layer(): Layer | undefined;
|
|
3359
|
+
set layer(value: Layer | string | Array<string | number> | undefined);
|
|
3360
|
+
get width(): number | undefined;
|
|
3361
|
+
set width(value: Width | number | undefined);
|
|
3362
|
+
get widthClass(): Width | undefined;
|
|
3363
|
+
set widthClass(value: Width | undefined);
|
|
3364
|
+
get stroke(): Stroke | undefined;
|
|
3365
|
+
set stroke(value: Stroke | undefined);
|
|
3366
|
+
get fill(): PadPrimitiveGrCircleFill | undefined;
|
|
3367
|
+
set fill(value: PadPrimitiveGrCircleFill | string | undefined);
|
|
3368
|
+
get tstamp(): Tstamp | undefined;
|
|
3369
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
3370
|
+
get uuid(): Uuid | undefined;
|
|
3371
|
+
set uuid(value: Uuid | string | undefined);
|
|
3372
|
+
getChildren(): SxClass[];
|
|
3373
|
+
private normalizeCenter;
|
|
3374
|
+
private normalizeEnd;
|
|
3375
|
+
}
|
|
3376
|
+
declare class GrCircleCenter extends SxClass {
|
|
3377
|
+
x: number;
|
|
3378
|
+
y: number;
|
|
3379
|
+
static token: string;
|
|
3380
|
+
static parentToken: string;
|
|
3381
|
+
token: string;
|
|
3382
|
+
constructor(x: number, y: number);
|
|
3383
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrCircleCenter;
|
|
3384
|
+
toObject(): GrCirclePoint;
|
|
3385
|
+
getChildren(): SxClass[];
|
|
3386
|
+
getString(): string;
|
|
3387
|
+
}
|
|
3388
|
+
declare class GrCircleEnd extends SxClass {
|
|
3389
|
+
x: number;
|
|
3390
|
+
y: number;
|
|
3391
|
+
static token: string;
|
|
3392
|
+
static parentToken: string;
|
|
3393
|
+
token: string;
|
|
3394
|
+
constructor(x: number, y: number);
|
|
3395
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrCircleEnd;
|
|
3396
|
+
toObject(): GrCirclePoint;
|
|
3397
|
+
getChildren(): SxClass[];
|
|
3398
|
+
getString(): string;
|
|
3399
|
+
}
|
|
3400
|
+
|
|
3401
|
+
interface GrCurveConstructorParams {
|
|
3402
|
+
points?: Pts | Xy[] | Array<{
|
|
3403
|
+
x: number;
|
|
3404
|
+
y: number;
|
|
3405
|
+
}>;
|
|
3406
|
+
layer?: Layer | string | Array<string | number>;
|
|
3407
|
+
width?: Width | number;
|
|
3408
|
+
stroke?: Stroke;
|
|
3409
|
+
tstamp?: Tstamp | string;
|
|
3410
|
+
uuid?: Uuid | string;
|
|
3411
|
+
}
|
|
3412
|
+
declare class GrCurve extends SxClass {
|
|
3413
|
+
static token: string;
|
|
3414
|
+
token: string;
|
|
3415
|
+
private _sxPts?;
|
|
3416
|
+
private _sxLayer?;
|
|
3417
|
+
private _sxWidth?;
|
|
3418
|
+
private _sxStroke?;
|
|
3419
|
+
private _sxTstamp?;
|
|
3420
|
+
private _sxUuid?;
|
|
3421
|
+
constructor(params?: GrCurveConstructorParams);
|
|
3422
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrCurve;
|
|
3423
|
+
get points(): Pts | undefined;
|
|
3424
|
+
set points(value: Pts | Xy[] | Array<{
|
|
3425
|
+
x: number;
|
|
3426
|
+
y: number;
|
|
3427
|
+
}> | undefined);
|
|
3428
|
+
get layer(): Layer | undefined;
|
|
3429
|
+
set layer(value: Layer | string | Array<string | number> | undefined);
|
|
3430
|
+
get width(): number | undefined;
|
|
3431
|
+
set width(value: Width | number | undefined);
|
|
3432
|
+
get widthClass(): Width | undefined;
|
|
3433
|
+
set widthClass(value: Width | undefined);
|
|
3434
|
+
get stroke(): Stroke | undefined;
|
|
3435
|
+
set stroke(value: Stroke | undefined);
|
|
3436
|
+
get tstamp(): Tstamp | undefined;
|
|
3437
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
3438
|
+
get uuid(): Uuid | undefined;
|
|
3439
|
+
set uuid(value: Uuid | string | undefined);
|
|
3440
|
+
getChildren(): SxClass[];
|
|
3441
|
+
}
|
|
3442
|
+
|
|
3235
3443
|
interface GrLinePoint {
|
|
3236
3444
|
x: number;
|
|
3237
3445
|
y: number;
|
|
@@ -4559,4 +4767,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
|
|
|
4559
4767
|
declare const parseKicadPcb: (sexpr: string) => KicadPcb;
|
|
4560
4768
|
declare const parseKicadMod: (sexpr: string) => Footprint;
|
|
4561
4769
|
|
|
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 };
|
|
4770
|
+
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 };
|