kicadts 0.0.25 → 0.0.27
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 +250 -4
- package/dist/index.js +1331 -178
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1815,7 +1815,9 @@ declare class FootprintAttr extends SxClass {
|
|
|
1815
1815
|
private _boardOnly;
|
|
1816
1816
|
private _excludeFromPosFiles;
|
|
1817
1817
|
private _excludeFromBom;
|
|
1818
|
+
private _allowMissingCourtyard;
|
|
1818
1819
|
private _allowSoldermaskBridges;
|
|
1820
|
+
private _dnp;
|
|
1819
1821
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintAttr;
|
|
1820
1822
|
private applyFlag;
|
|
1821
1823
|
get type(): string | undefined;
|
|
@@ -1828,6 +1830,10 @@ declare class FootprintAttr extends SxClass {
|
|
|
1828
1830
|
set excludeFromBom(value: boolean);
|
|
1829
1831
|
get allowSoldermaskBridges(): boolean;
|
|
1830
1832
|
set allowSoldermaskBridges(value: boolean);
|
|
1833
|
+
get allowMissingCourtyard(): boolean;
|
|
1834
|
+
set allowMissingCourtyard(value: boolean);
|
|
1835
|
+
get dnp(): boolean;
|
|
1836
|
+
set dnp(value: boolean);
|
|
1831
1837
|
getChildren(): SxClass[];
|
|
1832
1838
|
getString(): string;
|
|
1833
1839
|
}
|
|
@@ -2443,6 +2449,19 @@ declare class PadZoneConnect extends SxPrimitiveNumber {
|
|
|
2443
2449
|
token: string;
|
|
2444
2450
|
}
|
|
2445
2451
|
|
|
2452
|
+
declare class PadProperty extends SxClass {
|
|
2453
|
+
static token: string;
|
|
2454
|
+
static parentToken: string;
|
|
2455
|
+
token: string;
|
|
2456
|
+
private _value;
|
|
2457
|
+
constructor(value: string);
|
|
2458
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PadProperty;
|
|
2459
|
+
get value(): string;
|
|
2460
|
+
set value(value: string);
|
|
2461
|
+
getChildren(): SxClass[];
|
|
2462
|
+
getString(): string;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2446
2465
|
declare class PadTeardrops extends SxClass {
|
|
2447
2466
|
static token: string;
|
|
2448
2467
|
static parentToken: string;
|
|
@@ -2508,7 +2527,7 @@ interface FootprintPadConstructorParams {
|
|
|
2508
2527
|
layers?: PadLayersInput;
|
|
2509
2528
|
width?: Width | number;
|
|
2510
2529
|
stroke?: Stroke;
|
|
2511
|
-
properties?:
|
|
2530
|
+
properties?: PadProperty[];
|
|
2512
2531
|
roundrectRatio?: number | PadRoundrectRratio;
|
|
2513
2532
|
chamferRatio?: number | PadChamferRatio;
|
|
2514
2533
|
chamfer?: PadChamfer;
|
|
@@ -2594,8 +2613,8 @@ declare class FootprintPad extends SxClass {
|
|
|
2594
2613
|
set width(value: number | Width | undefined);
|
|
2595
2614
|
get stroke(): Stroke | undefined;
|
|
2596
2615
|
set stroke(value: Stroke | undefined);
|
|
2597
|
-
get properties():
|
|
2598
|
-
set properties(value:
|
|
2616
|
+
get properties(): PadProperty[];
|
|
2617
|
+
set properties(value: PadProperty[]);
|
|
2599
2618
|
get roundrectRatio(): number | undefined;
|
|
2600
2619
|
set roundrectRatio(value: number | PadRoundrectRratio | undefined);
|
|
2601
2620
|
get chamferRatio(): number | undefined;
|
|
@@ -3259,6 +3278,102 @@ declare class FootprintModel extends SxClass {
|
|
|
3259
3278
|
getString(): string;
|
|
3260
3279
|
}
|
|
3261
3280
|
|
|
3281
|
+
declare class EmbeddedFileChecksum extends SxClass {
|
|
3282
|
+
static token: string;
|
|
3283
|
+
static parentToken: string;
|
|
3284
|
+
token: string;
|
|
3285
|
+
private _value;
|
|
3286
|
+
constructor(value: string);
|
|
3287
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): EmbeddedFileChecksum;
|
|
3288
|
+
get value(): string;
|
|
3289
|
+
set value(value: string);
|
|
3290
|
+
getChildren(): SxClass[];
|
|
3291
|
+
getString(): string;
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
declare class EmbeddedFileData extends SxClass {
|
|
3295
|
+
static token: string;
|
|
3296
|
+
static parentToken: string;
|
|
3297
|
+
token: string;
|
|
3298
|
+
private _chunks;
|
|
3299
|
+
constructor(chunks?: string[]);
|
|
3300
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): EmbeddedFileData;
|
|
3301
|
+
static fromStrings(values: string[]): EmbeddedFileData;
|
|
3302
|
+
get chunks(): string[];
|
|
3303
|
+
set chunks(values: string[]);
|
|
3304
|
+
get value(): string;
|
|
3305
|
+
set value(data: string);
|
|
3306
|
+
getChildren(): SxClass[];
|
|
3307
|
+
getString(): string;
|
|
3308
|
+
}
|
|
3309
|
+
|
|
3310
|
+
declare class EmbeddedFileName extends SxClass {
|
|
3311
|
+
static token: string;
|
|
3312
|
+
static parentToken: string;
|
|
3313
|
+
token: string;
|
|
3314
|
+
private _value;
|
|
3315
|
+
constructor(value: string);
|
|
3316
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): EmbeddedFileName;
|
|
3317
|
+
get value(): string;
|
|
3318
|
+
set value(value: string);
|
|
3319
|
+
getChildren(): SxClass[];
|
|
3320
|
+
getString(): string;
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3323
|
+
declare class EmbeddedFileType extends SxClass {
|
|
3324
|
+
static token: string;
|
|
3325
|
+
static parentToken: string;
|
|
3326
|
+
token: string;
|
|
3327
|
+
private _value;
|
|
3328
|
+
constructor(value: string);
|
|
3329
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): EmbeddedFileType;
|
|
3330
|
+
get value(): string;
|
|
3331
|
+
set value(value: string);
|
|
3332
|
+
getChildren(): SxClass[];
|
|
3333
|
+
getString(): string;
|
|
3334
|
+
}
|
|
3335
|
+
|
|
3336
|
+
interface EmbeddedFileConstructorParams {
|
|
3337
|
+
name?: string | EmbeddedFileName;
|
|
3338
|
+
type?: string | EmbeddedFileType;
|
|
3339
|
+
checksum?: string | EmbeddedFileChecksum;
|
|
3340
|
+
data?: EmbeddedFileData | string | string[];
|
|
3341
|
+
}
|
|
3342
|
+
declare class EmbeddedFile extends SxClass {
|
|
3343
|
+
static token: string;
|
|
3344
|
+
static parentToken: string;
|
|
3345
|
+
token: string;
|
|
3346
|
+
private _sxName?;
|
|
3347
|
+
private _sxType?;
|
|
3348
|
+
private _sxChecksum?;
|
|
3349
|
+
private _sxData?;
|
|
3350
|
+
constructor(params?: EmbeddedFileConstructorParams);
|
|
3351
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): EmbeddedFile;
|
|
3352
|
+
get name(): string | undefined;
|
|
3353
|
+
set name(value: string | EmbeddedFileName | undefined);
|
|
3354
|
+
get type(): string | undefined;
|
|
3355
|
+
set type(value: string | EmbeddedFileType | undefined);
|
|
3356
|
+
get checksum(): string | undefined;
|
|
3357
|
+
set checksum(value: string | EmbeddedFileChecksum | undefined);
|
|
3358
|
+
get data(): EmbeddedFileData | undefined;
|
|
3359
|
+
set data(value: EmbeddedFileData | string | string[] | undefined);
|
|
3360
|
+
getChildren(): SxClass[];
|
|
3361
|
+
}
|
|
3362
|
+
|
|
3363
|
+
interface EmbeddedFilesConstructorParams {
|
|
3364
|
+
files?: EmbeddedFile[];
|
|
3365
|
+
}
|
|
3366
|
+
declare class EmbeddedFiles extends SxClass {
|
|
3367
|
+
static token: string;
|
|
3368
|
+
token: string;
|
|
3369
|
+
private _files;
|
|
3370
|
+
constructor(params?: EmbeddedFilesConstructorParams);
|
|
3371
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): EmbeddedFiles;
|
|
3372
|
+
get files(): EmbeddedFile[];
|
|
3373
|
+
set files(value: EmbeddedFile[]);
|
|
3374
|
+
getChildren(): SxClass[];
|
|
3375
|
+
}
|
|
3376
|
+
|
|
3262
3377
|
declare class FootprintLocked extends SxPrimitiveBoolean {
|
|
3263
3378
|
static token: string;
|
|
3264
3379
|
static parentToken: string;
|
|
@@ -3304,6 +3419,7 @@ interface FootprintConstructorParams {
|
|
|
3304
3419
|
sheetname?: string | FootprintSheetname;
|
|
3305
3420
|
sheetfile?: string | FootprintSheetfile;
|
|
3306
3421
|
embeddedFonts?: EmbeddedFonts;
|
|
3422
|
+
embeddedFiles?: EmbeddedFiles;
|
|
3307
3423
|
properties?: Property[];
|
|
3308
3424
|
fpTexts?: FpText[];
|
|
3309
3425
|
fpTextBoxes?: FpTextBox[];
|
|
@@ -3348,6 +3464,7 @@ declare class Footprint extends SxClass {
|
|
|
3348
3464
|
private _sxSheetname?;
|
|
3349
3465
|
private _sxSheetfile?;
|
|
3350
3466
|
private _sxEmbeddedFonts?;
|
|
3467
|
+
private _sxEmbeddedFiles?;
|
|
3351
3468
|
private _properties;
|
|
3352
3469
|
private _fpTexts;
|
|
3353
3470
|
private _fpTextBoxes;
|
|
@@ -3418,6 +3535,8 @@ declare class Footprint extends SxClass {
|
|
|
3418
3535
|
set sheetfile(value: string | FootprintSheetfile | undefined);
|
|
3419
3536
|
get embeddedFonts(): EmbeddedFonts | undefined;
|
|
3420
3537
|
set embeddedFonts(value: EmbeddedFonts | undefined);
|
|
3538
|
+
get embeddedFiles(): EmbeddedFiles | undefined;
|
|
3539
|
+
set embeddedFiles(value: EmbeddedFiles | undefined);
|
|
3421
3540
|
get properties(): Property[];
|
|
3422
3541
|
set properties(value: Property[]);
|
|
3423
3542
|
get fpTexts(): FpText[];
|
|
@@ -3993,6 +4112,72 @@ declare class GrPoly extends SxClass {
|
|
|
3993
4112
|
getChildren(): SxClass[];
|
|
3994
4113
|
}
|
|
3995
4114
|
|
|
4115
|
+
declare class DimensionFormat extends SxClass {
|
|
4116
|
+
static token: string;
|
|
4117
|
+
static parentToken: string;
|
|
4118
|
+
token: string;
|
|
4119
|
+
private _sxPrefix?;
|
|
4120
|
+
private _sxSuffix?;
|
|
4121
|
+
private _sxUnits?;
|
|
4122
|
+
private _sxUnitsFormat?;
|
|
4123
|
+
private _sxPrecision?;
|
|
4124
|
+
private _sxOverrideValue?;
|
|
4125
|
+
private _sxSuppressZeros?;
|
|
4126
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): DimensionFormat;
|
|
4127
|
+
getChildren(): SxClass[];
|
|
4128
|
+
}
|
|
4129
|
+
|
|
4130
|
+
declare class DimensionStyle extends SxClass {
|
|
4131
|
+
static token: string;
|
|
4132
|
+
static parentToken: string;
|
|
4133
|
+
token: string;
|
|
4134
|
+
private _sxThickness?;
|
|
4135
|
+
private _sxArrowLength?;
|
|
4136
|
+
private _sxTextPositionMode?;
|
|
4137
|
+
private _sxArrowDirection?;
|
|
4138
|
+
private _sxExtensionHeight?;
|
|
4139
|
+
private _sxTextFrame?;
|
|
4140
|
+
private _sxExtensionOffset?;
|
|
4141
|
+
private _sxKeepTextAligned?;
|
|
4142
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): DimensionStyle;
|
|
4143
|
+
getChildren(): SxClass[];
|
|
4144
|
+
}
|
|
4145
|
+
|
|
4146
|
+
declare class Dimension extends SxClass {
|
|
4147
|
+
static token: string;
|
|
4148
|
+
static parentToken: string;
|
|
4149
|
+
token: string;
|
|
4150
|
+
private _sxLocked?;
|
|
4151
|
+
private _sxType?;
|
|
4152
|
+
private _sxLayer?;
|
|
4153
|
+
private _sxUuid?;
|
|
4154
|
+
private _sxPts?;
|
|
4155
|
+
private _sxHeight?;
|
|
4156
|
+
private _sxOrientation?;
|
|
4157
|
+
private _sxLeaderLength?;
|
|
4158
|
+
private _sxFormat?;
|
|
4159
|
+
private _sxStyle?;
|
|
4160
|
+
private _sxGrText?;
|
|
4161
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Dimension;
|
|
4162
|
+
getChildren(): SxClass[];
|
|
4163
|
+
}
|
|
4164
|
+
|
|
4165
|
+
declare class Target extends SxClass {
|
|
4166
|
+
static token: string;
|
|
4167
|
+
static parentToken: string;
|
|
4168
|
+
token: string;
|
|
4169
|
+
private _shape;
|
|
4170
|
+
private _sxAt?;
|
|
4171
|
+
private _sxSize?;
|
|
4172
|
+
private _sxWidth?;
|
|
4173
|
+
private _sxLayer?;
|
|
4174
|
+
private _sxUuid?;
|
|
4175
|
+
constructor(shape: string);
|
|
4176
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Target;
|
|
4177
|
+
getChildren(): SxClass[];
|
|
4178
|
+
getString(): string;
|
|
4179
|
+
}
|
|
4180
|
+
|
|
3996
4181
|
interface GroupConstructorParams {
|
|
3997
4182
|
name?: string;
|
|
3998
4183
|
uuid?: string | Uuid;
|
|
@@ -4040,6 +4225,63 @@ declare class GroupMembers extends SxClass {
|
|
|
4040
4225
|
getString(): string;
|
|
4041
4226
|
}
|
|
4042
4227
|
|
|
4228
|
+
declare class Generated extends SxClass {
|
|
4229
|
+
static token: string;
|
|
4230
|
+
static parentToken: string;
|
|
4231
|
+
token: string;
|
|
4232
|
+
private _rawChildren;
|
|
4233
|
+
constructor();
|
|
4234
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Generated;
|
|
4235
|
+
get rawChildren(): PrimitiveSExpr[];
|
|
4236
|
+
set rawChildren(value: PrimitiveSExpr[]);
|
|
4237
|
+
getChildren(): SxClass[];
|
|
4238
|
+
getString(): string;
|
|
4239
|
+
}
|
|
4240
|
+
|
|
4241
|
+
interface PcbArcPoint {
|
|
4242
|
+
x: number;
|
|
4243
|
+
y: number;
|
|
4244
|
+
}
|
|
4245
|
+
interface PcbArcConstructorParams {
|
|
4246
|
+
start?: PcbArcPoint;
|
|
4247
|
+
mid?: PcbArcPoint;
|
|
4248
|
+
end?: PcbArcPoint;
|
|
4249
|
+
width?: number | Width;
|
|
4250
|
+
layer?: string | Layer;
|
|
4251
|
+
net?: number;
|
|
4252
|
+
uuid?: string | Uuid;
|
|
4253
|
+
}
|
|
4254
|
+
declare class PcbArc extends SxClass {
|
|
4255
|
+
static token: string;
|
|
4256
|
+
static parentToken: string;
|
|
4257
|
+
token: string;
|
|
4258
|
+
private _start?;
|
|
4259
|
+
private _mid?;
|
|
4260
|
+
private _end?;
|
|
4261
|
+
private _sxWidth?;
|
|
4262
|
+
private _sxLayer?;
|
|
4263
|
+
private _net?;
|
|
4264
|
+
private _sxUuid?;
|
|
4265
|
+
constructor(params?: PcbArcConstructorParams);
|
|
4266
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PcbArc;
|
|
4267
|
+
get start(): PcbArcPoint | undefined;
|
|
4268
|
+
set start(value: PcbArcPoint | undefined);
|
|
4269
|
+
get mid(): PcbArcPoint | undefined;
|
|
4270
|
+
set mid(value: PcbArcPoint | undefined);
|
|
4271
|
+
get end(): PcbArcPoint | undefined;
|
|
4272
|
+
set end(value: PcbArcPoint | undefined);
|
|
4273
|
+
get width(): number | undefined;
|
|
4274
|
+
set width(value: number | Width | undefined);
|
|
4275
|
+
get layer(): Layer | undefined;
|
|
4276
|
+
set layer(value: string | Layer | undefined);
|
|
4277
|
+
get net(): number | undefined;
|
|
4278
|
+
set net(value: number | undefined);
|
|
4279
|
+
get uuid(): Uuid | undefined;
|
|
4280
|
+
set uuid(value: string | Uuid | undefined);
|
|
4281
|
+
getChildren(): SxClass[];
|
|
4282
|
+
getString(): string;
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4043
4285
|
declare class SegmentEnd extends SxClass {
|
|
4044
4286
|
static token: string;
|
|
4045
4287
|
static parentToken: string;
|
|
@@ -5190,6 +5432,7 @@ interface KicadPcbConstructorParams {
|
|
|
5190
5432
|
vias?: Via[];
|
|
5191
5433
|
zones?: Zone[];
|
|
5192
5434
|
embeddedFonts?: EmbeddedFonts;
|
|
5435
|
+
embeddedFiles?: EmbeddedFiles;
|
|
5193
5436
|
otherChildren?: SxClass[];
|
|
5194
5437
|
}
|
|
5195
5438
|
declare class KicadPcb extends SxClass {
|
|
@@ -5215,6 +5458,7 @@ declare class KicadPcb extends SxClass {
|
|
|
5215
5458
|
private _vias;
|
|
5216
5459
|
private _zones;
|
|
5217
5460
|
private _sxEmbeddedFonts?;
|
|
5461
|
+
private _sxEmbeddedFiles?;
|
|
5218
5462
|
private _otherChildren;
|
|
5219
5463
|
constructor(params?: KicadPcbConstructorParams);
|
|
5220
5464
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): KicadPcb;
|
|
@@ -5259,6 +5503,8 @@ declare class KicadPcb extends SxClass {
|
|
|
5259
5503
|
set zones(value: Zone[]);
|
|
5260
5504
|
get embeddedFonts(): EmbeddedFonts | undefined;
|
|
5261
5505
|
set embeddedFonts(value: EmbeddedFonts | undefined);
|
|
5506
|
+
get embeddedFiles(): EmbeddedFiles | undefined;
|
|
5507
|
+
set embeddedFiles(value: EmbeddedFiles | undefined);
|
|
5262
5508
|
get otherChildren(): SxClass[];
|
|
5263
5509
|
set otherChildren(value: SxClass[]);
|
|
5264
5510
|
getChildren(): SxClass[];
|
|
@@ -5269,4 +5515,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
|
|
|
5269
5515
|
declare const parseKicadPcb: (sexpr: string) => KicadPcb;
|
|
5270
5516
|
declare const parseKicadMod: (sexpr: string) => Footprint;
|
|
5271
5517
|
|
|
5272
|
-
export { At, type AtInput, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Color, Dnp, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintGenerator, FootprintGeneratorVersion, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintVersion, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, 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, GrCircleLocked, type GrCirclePoint, GrCurve, type GrCurveConstructorParams, GrLine, GrLineAngle, type GrLineConstructorParams, GrLineEnd, GrLineLocked, type GrLinePoint, GrLineStart, GrPoly, type GrPolyConstructorParams, GrPolyFill, GrRect, type GrRectConstructorParams, GrRectEnd, GrRectFill, GrRectLocked, GrRectStart, GrText, type GrTextConstructorParams, type GrTextPosition, GrTextRenderCache, GrTextRenderCachePolygon, Group, type GroupConstructorParams, GroupLocked, GroupMembers, Image, type ImageConstructorParams, ImageData, ImageScale, InBom, Junction, type JunctionConstructorParams, JunctionDiameter, KicadPcb, type KicadPcbConstructorParams, KicadSch, type KicadSchConstructorParams, KicadSchGenerator, KicadSchGeneratorVersion, KicadSchVersion, KicadSymbolLib, type KicadSymbolLibConstructorParams, KicadSymbolLibGenerator, KicadSymbolLibVersion, Label, type LabelConstructorParams, Layer, Layers, LibSymbols, Mirror, type ModelVector, NoConnect, type NoConnectConstructorParams, OnBoard, PadChamfer, PadChamferRatio, PadClearance, PadDieLength, PadDrill, PadDrillOffset, PadLayers, type PadLayersInput, PadNet, PadOptions, type PadOptionsAnchorShape, type PadOptionsClearanceType, PadPinFunction, PadPinType, PadPrimitiveGrArc, type PadPrimitiveGrArcConstructorParams, PadPrimitiveGrCircle, type PadPrimitiveGrCircleConstructorParams, PadPrimitiveGrCircleFill, PadPrimitiveGrLine, PadPrimitiveGrPoly, PadPrimitives, 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, Polyline, type PolylineConstructorParams, Property, type PropertyConstructorParams, PropertyHide, PropertyUnlocked, Pts, PtsArc, PtsArcEnd, PtsArcMid, PtsArcStart, type RGBAColor, RenderCache, SchematicPolyline, SchematicSymbol, type SchematicSymbolConstructorParams, SchematicText, type SchematicTextConstructorParams, Segment, type SegmentConstructorParams, SegmentEnd, SegmentLocked, SegmentNet, SegmentStart, Setup, SetupAllowSoldermaskBridgesInFootprints, SetupAuxAxisOrigin, SetupEdgeWidth, SetupGridOrigin, SetupLastTraceWidth, SetupModEdgeWidth, SetupModTextSize, SetupModTextWidth, SetupPadDrill, SetupPadSize, SetupPadToMaskClearance, SetupPadToPasteClearance, SetupPadToPasteClearanceRatio, SetupPadToPasteClearanceValues, SetupPcbTextSize, SetupPcbTextWidth, type SetupProperty, type SetupPropertyValues, SetupSegmentWidth, SetupSolderMaskMinWidth, SetupTenting, SetupTraceClearance, SetupTraceMin, SetupTraceWidth, SetupUviaDrill, SetupUviaMinDrill, SetupUviaMinSize, SetupUviaSize, SetupUviasAllowed, SetupViaDrill, SetupViaMinDrill, SetupViaMinSize, SetupViaSize, SetupVisibleElements, SetupZone45Only, SetupZoneClearance, Sheet, type SheetConstructorParams, SheetFill, SheetInstancePage, SheetInstancePath, SheetInstances, SheetInstancesForSheet, SheetInstancesProject, SheetInstancesRoot, SheetInstancesRootPage, SheetInstancesRootPath, SheetPin, type SheetPinElectricalType, SheetProperty, SheetSize, Stackup, StackupCastellatedPads, StackupCopperFinish, StackupDielectricConstraints, StackupEdgeConnector, StackupEdgePlating, StackupLayer, StackupLayerColor, StackupLayerEpsilonR, StackupLayerLossTangent, StackupLayerMaterial, StackupLayerThickness, StackupLayerType, type StandardPaperSize, Stroke, type StrokeProperty, StrokeType, type StrokeTypeString, SxClass, SymbolArc, SymbolArcEnd, SymbolArcFill, SymbolArcMid, SymbolArcStart, SymbolCircle, SymbolCircleCenter, SymbolCircleFill, SymbolCircleRadius, SymbolDuplicatePinNumbersAreJumpers, SymbolFillType, SymbolInstancePath, SymbolInstanceReference, SymbolInstanceUnit, SymbolInstances, SymbolInstancesProject, SymbolLibId, SymbolPin, SymbolPinLength, SymbolPinName, SymbolPinNames, SymbolPinNamesHide, SymbolPinNamesOffset, SymbolPinNumber, SymbolPinNumbers, SymbolPinNumbersHide, SymbolPolyline, SymbolPolylineFill, type SymbolPolylineFillLike, SymbolPower, SymbolProperty, SymbolPropertyId, SymbolRectangle, SymbolRectangleEnd, SymbolRectangleFill, SymbolRectangleStart, SymbolText, SymbolUnit, TextEffects, type TextEffectsConstructorParams, TextEffectsFont, TextEffectsFontBold, TextEffectsFontFace, TextEffectsFontItalic, TextEffectsFontLineSpacing, type TextEffectsFontProperty, TextEffectsFontSize, TextEffectsFontThickness, TextEffectsJustify, type TextEffectsProperty, TitleBlock, TitleBlockComment, TitleBlockCompany, type TitleBlockConstructorParams, TitleBlockDate, TitleBlockRevision, TitleBlockTitle, Tstamp, Unit, type UnitString, Uuid, Via, type ViaConstructorParams, ViaNet, Width, Wire, type WireConstructorParams, Xy, Zone, parseKicadMod, parseKicadPcb, parseKicadSch, parseKicadSexpr };
|
|
5518
|
+
export { At, type AtInput, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Color, Dimension, DimensionFormat, DimensionStyle, Dnp, EmbeddedFile, EmbeddedFileChecksum, type EmbeddedFileConstructorParams, EmbeddedFileData, EmbeddedFileName, EmbeddedFileType, EmbeddedFiles, type EmbeddedFilesConstructorParams, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintGenerator, FootprintGeneratorVersion, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintVersion, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, 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, Generated, GlobalLabel, type GlobalLabelConstructorParams, type GlobalLabelShape, GrArc, type GrArcConstructorParams, GrArcEnd, GrArcMid, type GrArcPoint, GrArcStart, GrCircle, GrCircleCenter, type GrCircleConstructorParams, GrCircleEnd, GrCircleLocked, type GrCirclePoint, GrCurve, type GrCurveConstructorParams, GrLine, GrLineAngle, type GrLineConstructorParams, GrLineEnd, GrLineLocked, type GrLinePoint, GrLineStart, GrPoly, type GrPolyConstructorParams, GrPolyFill, GrRect, type GrRectConstructorParams, GrRectEnd, GrRectFill, GrRectLocked, GrRectStart, GrText, type GrTextConstructorParams, type GrTextPosition, GrTextRenderCache, GrTextRenderCachePolygon, Group, type GroupConstructorParams, GroupLocked, GroupMembers, Image, type ImageConstructorParams, ImageData, ImageScale, InBom, Junction, type JunctionConstructorParams, JunctionDiameter, KicadPcb, type KicadPcbConstructorParams, KicadSch, type KicadSchConstructorParams, KicadSchGenerator, KicadSchGeneratorVersion, KicadSchVersion, KicadSymbolLib, type KicadSymbolLibConstructorParams, KicadSymbolLibGenerator, KicadSymbolLibVersion, Label, type LabelConstructorParams, Layer, Layers, LibSymbols, Mirror, type ModelVector, NoConnect, type NoConnectConstructorParams, OnBoard, PadChamfer, PadChamferRatio, PadClearance, PadDieLength, PadDrill, PadDrillOffset, PadLayers, type PadLayersInput, PadNet, PadOptions, type PadOptionsAnchorShape, type PadOptionsClearanceType, PadPinFunction, PadPinType, PadPrimitiveGrArc, type PadPrimitiveGrArcConstructorParams, PadPrimitiveGrCircle, type PadPrimitiveGrCircleConstructorParams, PadPrimitiveGrCircleFill, PadPrimitiveGrLine, PadPrimitiveGrPoly, PadPrimitives, PadProperty, PadRectDelta, PadRoundrectRratio, PadSize, type PadSizeInput, PadSolderMaskMargin, PadSolderPasteMargin, PadSolderPasteMarginRatio, PadTeardrops, PadThermalBridgeAngle, PadThermalGap, PadThermalWidth, PadZoneConnect, 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, PlotParamPlotFrameRef, PlotParamPlotInvisible, PlotParamPlotInvisibleText, PlotParamPlotOnAllLayers, PlotParamPlotOnAllLayersSelection, PlotParamPlotOtherText, PlotParamPlotPadNumbers, PlotParamPlotReference, PlotParamPlotValue, PlotParamProperty, PlotParamPsA4Output, PlotParamPsNegative, PlotParamScaleSelection, PlotParamSketchDnpOnFab, PlotParamSketchPadsOnFab, PlotParamSubtractMaskFromSilk, PlotParamSvgPrecision, PlotParamUseAuxOrigin, PlotParamUseGerberAdvancedAttributes, PlotParamUseGerberAttributes, PlotParamUseGerberExtensions, PlotParamViaOnMask, Polyline, type PolylineConstructorParams, Property, type PropertyConstructorParams, PropertyHide, PropertyUnlocked, Pts, PtsArc, PtsArcEnd, PtsArcMid, PtsArcStart, type RGBAColor, RenderCache, SchematicPolyline, SchematicSymbol, type SchematicSymbolConstructorParams, SchematicText, type SchematicTextConstructorParams, Segment, type SegmentConstructorParams, SegmentEnd, SegmentLocked, SegmentNet, SegmentStart, Setup, SetupAllowSoldermaskBridgesInFootprints, SetupAuxAxisOrigin, SetupEdgeWidth, SetupGridOrigin, SetupLastTraceWidth, SetupModEdgeWidth, SetupModTextSize, SetupModTextWidth, SetupPadDrill, SetupPadSize, SetupPadToMaskClearance, SetupPadToPasteClearance, SetupPadToPasteClearanceRatio, SetupPadToPasteClearanceValues, SetupPcbTextSize, SetupPcbTextWidth, type SetupProperty, type SetupPropertyValues, SetupSegmentWidth, SetupSolderMaskMinWidth, SetupTenting, SetupTraceClearance, SetupTraceMin, SetupTraceWidth, SetupUviaDrill, SetupUviaMinDrill, SetupUviaMinSize, SetupUviaSize, SetupUviasAllowed, SetupViaDrill, SetupViaMinDrill, SetupViaMinSize, SetupViaSize, SetupVisibleElements, SetupZone45Only, SetupZoneClearance, Sheet, type SheetConstructorParams, SheetFill, SheetInstancePage, SheetInstancePath, SheetInstances, SheetInstancesForSheet, SheetInstancesProject, SheetInstancesRoot, SheetInstancesRootPage, SheetInstancesRootPath, SheetPin, type SheetPinElectricalType, SheetProperty, SheetSize, Stackup, StackupCastellatedPads, StackupCopperFinish, StackupDielectricConstraints, StackupEdgeConnector, StackupEdgePlating, StackupLayer, StackupLayerColor, StackupLayerEpsilonR, StackupLayerLossTangent, StackupLayerMaterial, StackupLayerThickness, StackupLayerType, type StandardPaperSize, Stroke, type StrokeProperty, StrokeType, type StrokeTypeString, SxClass, SymbolArc, SymbolArcEnd, SymbolArcFill, SymbolArcMid, SymbolArcStart, SymbolCircle, SymbolCircleCenter, SymbolCircleFill, SymbolCircleRadius, SymbolDuplicatePinNumbersAreJumpers, SymbolFillType, SymbolInstancePath, SymbolInstanceReference, SymbolInstanceUnit, SymbolInstances, SymbolInstancesProject, SymbolLibId, SymbolPin, SymbolPinLength, SymbolPinName, SymbolPinNames, SymbolPinNamesHide, SymbolPinNamesOffset, SymbolPinNumber, SymbolPinNumbers, SymbolPinNumbersHide, SymbolPolyline, SymbolPolylineFill, type SymbolPolylineFillLike, SymbolPower, SymbolProperty, SymbolPropertyId, SymbolRectangle, SymbolRectangleEnd, SymbolRectangleFill, SymbolRectangleStart, SymbolText, SymbolUnit, Target, TextEffects, type TextEffectsConstructorParams, TextEffectsFont, TextEffectsFontBold, TextEffectsFontFace, TextEffectsFontItalic, TextEffectsFontLineSpacing, type TextEffectsFontProperty, TextEffectsFontSize, TextEffectsFontThickness, TextEffectsJustify, type TextEffectsProperty, TitleBlock, TitleBlockComment, TitleBlockCompany, type TitleBlockConstructorParams, TitleBlockDate, TitleBlockRevision, TitleBlockTitle, Tstamp, Unit, type UnitString, Uuid, Via, type ViaConstructorParams, ViaNet, Width, Wire, type WireConstructorParams, Xy, Zone, parseKicadMod, parseKicadPcb, parseKicadSch, parseKicadSexpr };
|