kicadts 0.0.11 → 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 +250 -5
- package/dist/index.js +1049 -160
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -489,6 +489,11 @@ declare class RenderCachePolygon extends SxClass {
|
|
|
489
489
|
getChildren(): SxClass[];
|
|
490
490
|
}
|
|
491
491
|
|
|
492
|
+
declare class Tstamp extends SxPrimitiveString {
|
|
493
|
+
static token: string;
|
|
494
|
+
token: string;
|
|
495
|
+
}
|
|
496
|
+
|
|
492
497
|
declare class KicadSchGenerator extends SxPrimitiveString {
|
|
493
498
|
static token: string;
|
|
494
499
|
static parentToken: string;
|
|
@@ -2315,6 +2320,7 @@ interface FootprintPadConstructorParams {
|
|
|
2315
2320
|
chamfer?: PadChamfer;
|
|
2316
2321
|
rectDelta?: PadRectDelta;
|
|
2317
2322
|
net?: PadNet;
|
|
2323
|
+
tstamp?: Tstamp | string;
|
|
2318
2324
|
uuid?: Uuid | string;
|
|
2319
2325
|
pinFunction?: string | PadPinFunction;
|
|
2320
2326
|
pinType?: string | PadPinType;
|
|
@@ -2352,6 +2358,7 @@ declare class FootprintPad extends SxClass {
|
|
|
2352
2358
|
private _sxChamfer?;
|
|
2353
2359
|
private _sxRectDelta?;
|
|
2354
2360
|
private _sxNet?;
|
|
2361
|
+
private _sxTstamp?;
|
|
2355
2362
|
private _sxUuid?;
|
|
2356
2363
|
private _sxPinFunction?;
|
|
2357
2364
|
private _sxPinType?;
|
|
@@ -2409,6 +2416,8 @@ declare class FootprintPad extends SxClass {
|
|
|
2409
2416
|
} | undefined);
|
|
2410
2417
|
get net(): PadNet | undefined;
|
|
2411
2418
|
set net(value: PadNet | undefined);
|
|
2419
|
+
get tstamp(): Tstamp | undefined;
|
|
2420
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
2412
2421
|
get uuid(): Uuid | undefined;
|
|
2413
2422
|
set uuid(value: Uuid | string | undefined);
|
|
2414
2423
|
get pinfunction(): string | undefined;
|
|
@@ -2452,6 +2461,7 @@ interface FpTextConstructorParams {
|
|
|
2452
2461
|
hidden?: boolean;
|
|
2453
2462
|
layer?: Layer | string | string[];
|
|
2454
2463
|
effects?: TextEffects;
|
|
2464
|
+
tstamp?: Tstamp | string;
|
|
2455
2465
|
uuid?: Uuid | string;
|
|
2456
2466
|
}
|
|
2457
2467
|
declare class FpText extends SxClass {
|
|
@@ -2464,6 +2474,7 @@ declare class FpText extends SxClass {
|
|
|
2464
2474
|
private _sxHide?;
|
|
2465
2475
|
private _sxLayer?;
|
|
2466
2476
|
private _sxEffects?;
|
|
2477
|
+
private _sxTstamp?;
|
|
2467
2478
|
private _sxUuid?;
|
|
2468
2479
|
constructor(params?: FpTextConstructorParams);
|
|
2469
2480
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FpText;
|
|
@@ -2481,6 +2492,8 @@ declare class FpText extends SxClass {
|
|
|
2481
2492
|
set layer(value: Layer | string | string[] | undefined);
|
|
2482
2493
|
get effects(): TextEffects | undefined;
|
|
2483
2494
|
set effects(value: TextEffects | undefined);
|
|
2495
|
+
get tstamp(): Tstamp | undefined;
|
|
2496
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
2484
2497
|
get uuid(): Uuid | undefined;
|
|
2485
2498
|
set uuid(value: Uuid | string | undefined);
|
|
2486
2499
|
getChildren(): SxClass[];
|
|
@@ -2776,6 +2789,7 @@ interface FpArcConstructorParams {
|
|
|
2776
2789
|
layer?: Layer | string | string[];
|
|
2777
2790
|
width?: number | Width;
|
|
2778
2791
|
stroke?: Stroke;
|
|
2792
|
+
tstamp?: Tstamp | string;
|
|
2779
2793
|
uuid?: string | Uuid;
|
|
2780
2794
|
locked?: boolean;
|
|
2781
2795
|
}
|
|
@@ -2788,6 +2802,7 @@ declare class FpArc extends SxClass {
|
|
|
2788
2802
|
private _sxLayer?;
|
|
2789
2803
|
private _sxWidth?;
|
|
2790
2804
|
private _sxStroke?;
|
|
2805
|
+
private _sxTstamp?;
|
|
2791
2806
|
private _sxUuid?;
|
|
2792
2807
|
private _locked;
|
|
2793
2808
|
constructor(params?: FpArcConstructorParams);
|
|
@@ -2814,6 +2829,8 @@ declare class FpArc extends SxClass {
|
|
|
2814
2829
|
get widthClass(): Width | undefined;
|
|
2815
2830
|
get stroke(): Stroke | undefined;
|
|
2816
2831
|
set stroke(value: Stroke | undefined);
|
|
2832
|
+
get tstamp(): Tstamp | undefined;
|
|
2833
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
2817
2834
|
get uuid(): string | undefined;
|
|
2818
2835
|
set uuid(value: string | Uuid | undefined);
|
|
2819
2836
|
get uuidClass(): Uuid | undefined;
|
|
@@ -2874,6 +2891,7 @@ interface FpPolyConstructorParams {
|
|
|
2874
2891
|
stroke?: Stroke;
|
|
2875
2892
|
fill?: FpPolyFill | boolean;
|
|
2876
2893
|
locked?: boolean;
|
|
2894
|
+
tstamp?: Tstamp | string;
|
|
2877
2895
|
uuid?: Uuid | string;
|
|
2878
2896
|
}
|
|
2879
2897
|
declare class FpPoly extends SxClass {
|
|
@@ -2885,6 +2903,7 @@ declare class FpPoly extends SxClass {
|
|
|
2885
2903
|
private _sxStroke?;
|
|
2886
2904
|
private _sxFill?;
|
|
2887
2905
|
private _sxLocked?;
|
|
2906
|
+
private _sxTstamp?;
|
|
2888
2907
|
private _sxUuid?;
|
|
2889
2908
|
constructor(params?: FpPolyConstructorParams);
|
|
2890
2909
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FpPoly;
|
|
@@ -2905,6 +2924,8 @@ declare class FpPoly extends SxClass {
|
|
|
2905
2924
|
set fill(value: FpPolyFill | boolean | undefined);
|
|
2906
2925
|
get locked(): boolean;
|
|
2907
2926
|
set locked(value: boolean);
|
|
2927
|
+
get tstamp(): Tstamp | undefined;
|
|
2928
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
2908
2929
|
get uuid(): Uuid | undefined;
|
|
2909
2930
|
set uuid(value: Uuid | string | undefined);
|
|
2910
2931
|
getChildren(): SxClass[];
|
|
@@ -2948,6 +2969,7 @@ interface FpLineConstructorParams {
|
|
|
2948
2969
|
layer?: Layer | string | string[];
|
|
2949
2970
|
width?: number;
|
|
2950
2971
|
stroke?: Stroke;
|
|
2972
|
+
tstamp?: Tstamp | string;
|
|
2951
2973
|
uuid?: Uuid | string;
|
|
2952
2974
|
locked?: boolean;
|
|
2953
2975
|
}
|
|
@@ -2960,6 +2982,7 @@ declare class FpLine extends SxClass {
|
|
|
2960
2982
|
private _sxLayer?;
|
|
2961
2983
|
private _sxWidth?;
|
|
2962
2984
|
private _sxStroke?;
|
|
2985
|
+
private _sxTstamp?;
|
|
2963
2986
|
private _sxUuid?;
|
|
2964
2987
|
private _locked;
|
|
2965
2988
|
constructor(params?: FpLineConstructorParams);
|
|
@@ -2980,6 +3003,8 @@ declare class FpLine extends SxClass {
|
|
|
2980
3003
|
set width(value: number | undefined);
|
|
2981
3004
|
get stroke(): Stroke | undefined;
|
|
2982
3005
|
set stroke(value: Stroke | undefined);
|
|
3006
|
+
get tstamp(): Tstamp | undefined;
|
|
3007
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
2983
3008
|
get uuid(): Uuid | undefined;
|
|
2984
3009
|
set uuid(value: Uuid | string | undefined);
|
|
2985
3010
|
get locked(): boolean;
|
|
@@ -3057,6 +3082,7 @@ interface FootprintConstructorParams {
|
|
|
3057
3082
|
locked?: boolean;
|
|
3058
3083
|
placed?: boolean;
|
|
3059
3084
|
layer?: Layer | string | string[];
|
|
3085
|
+
tstamp?: Tstamp | string;
|
|
3060
3086
|
uuid?: Uuid | string;
|
|
3061
3087
|
at?: AtInput | Xy;
|
|
3062
3088
|
descr?: string | FootprintDescr;
|
|
@@ -3096,6 +3122,7 @@ declare class Footprint extends SxClass {
|
|
|
3096
3122
|
private _sxPlaced?;
|
|
3097
3123
|
private _sxLayer?;
|
|
3098
3124
|
private _sxTedit?;
|
|
3125
|
+
private _sxTstamp?;
|
|
3099
3126
|
private _sxUuid?;
|
|
3100
3127
|
private _sxAt?;
|
|
3101
3128
|
private _sxXy?;
|
|
@@ -3139,6 +3166,8 @@ declare class Footprint extends SxClass {
|
|
|
3139
3166
|
set layer(value: Layer | string | string[] | undefined);
|
|
3140
3167
|
get tedit(): FootprintTedit | undefined;
|
|
3141
3168
|
set tedit(value: FootprintTedit | string | undefined);
|
|
3169
|
+
get tstamp(): Tstamp | undefined;
|
|
3170
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
3142
3171
|
get uuid(): Uuid | undefined;
|
|
3143
3172
|
set uuid(value: Uuid | string | undefined);
|
|
3144
3173
|
get position(): At | Xy | undefined;
|
|
@@ -3203,6 +3232,214 @@ declare class Footprint extends SxClass {
|
|
|
3203
3232
|
getString(): string;
|
|
3204
3233
|
}
|
|
3205
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
|
+
|
|
3206
3443
|
interface GrLinePoint {
|
|
3207
3444
|
x: number;
|
|
3208
3445
|
y: number;
|
|
@@ -3214,6 +3451,7 @@ interface GrLineConstructorParams {
|
|
|
3214
3451
|
layer?: Layer | string | Array<string | number>;
|
|
3215
3452
|
width?: Width | number;
|
|
3216
3453
|
stroke?: Stroke;
|
|
3454
|
+
tstamp?: Tstamp | string;
|
|
3217
3455
|
uuid?: Uuid | string;
|
|
3218
3456
|
locked?: boolean;
|
|
3219
3457
|
}
|
|
@@ -3226,6 +3464,7 @@ declare class GrLine extends SxClass {
|
|
|
3226
3464
|
private _sxLayer?;
|
|
3227
3465
|
private _sxWidth?;
|
|
3228
3466
|
private _sxStroke?;
|
|
3467
|
+
private _sxTstamp?;
|
|
3229
3468
|
private _sxUuid?;
|
|
3230
3469
|
private _sxLocked?;
|
|
3231
3470
|
constructor(params?: GrLineConstructorParams);
|
|
@@ -3246,6 +3485,8 @@ declare class GrLine extends SxClass {
|
|
|
3246
3485
|
set widthClass(value: Width | undefined);
|
|
3247
3486
|
get stroke(): Stroke | undefined;
|
|
3248
3487
|
set stroke(value: Stroke | undefined);
|
|
3488
|
+
get tstamp(): Tstamp | undefined;
|
|
3489
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
3249
3490
|
get uuid(): Uuid | undefined;
|
|
3250
3491
|
set uuid(value: Uuid | string | undefined);
|
|
3251
3492
|
get locked(): boolean;
|
|
@@ -3384,6 +3625,7 @@ interface SegmentConstructorParams {
|
|
|
3384
3625
|
id: number;
|
|
3385
3626
|
name?: string;
|
|
3386
3627
|
};
|
|
3628
|
+
tstamp?: Tstamp | string;
|
|
3387
3629
|
uuid?: Uuid | string;
|
|
3388
3630
|
locked?: boolean;
|
|
3389
3631
|
}
|
|
@@ -3395,6 +3637,7 @@ declare class Segment extends SxClass {
|
|
|
3395
3637
|
private _sxWidth?;
|
|
3396
3638
|
private _sxLayer?;
|
|
3397
3639
|
private _sxNet?;
|
|
3640
|
+
private _sxTstamp?;
|
|
3398
3641
|
private _sxUuid?;
|
|
3399
3642
|
private _sxLocked?;
|
|
3400
3643
|
constructor(params?: SegmentConstructorParams);
|
|
@@ -3428,6 +3671,8 @@ declare class Segment extends SxClass {
|
|
|
3428
3671
|
id: number;
|
|
3429
3672
|
name?: string;
|
|
3430
3673
|
} | undefined);
|
|
3674
|
+
get tstamp(): Tstamp | undefined;
|
|
3675
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
3431
3676
|
get uuid(): Uuid | undefined;
|
|
3432
3677
|
set uuid(value: Uuid | string | undefined);
|
|
3433
3678
|
get locked(): boolean;
|
|
@@ -4380,7 +4625,7 @@ interface ViaConstructorParams {
|
|
|
4380
4625
|
layers?: Layers | string[];
|
|
4381
4626
|
net?: ViaNet;
|
|
4382
4627
|
uuid?: Uuid | string;
|
|
4383
|
-
tstamp?: string;
|
|
4628
|
+
tstamp?: Tstamp | string;
|
|
4384
4629
|
teardrops?: PadTeardrops;
|
|
4385
4630
|
}
|
|
4386
4631
|
declare class Via extends SxClass {
|
|
@@ -4397,7 +4642,7 @@ declare class Via extends SxClass {
|
|
|
4397
4642
|
private _sxLayers?;
|
|
4398
4643
|
private _sxNet?;
|
|
4399
4644
|
private _sxUuid?;
|
|
4400
|
-
private
|
|
4645
|
+
private _sxTstamp?;
|
|
4401
4646
|
private _sxTeardrops?;
|
|
4402
4647
|
constructor(params?: ViaConstructorParams);
|
|
4403
4648
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Via;
|
|
@@ -4428,8 +4673,8 @@ declare class Via extends SxClass {
|
|
|
4428
4673
|
set uuid(value: Uuid | string | undefined);
|
|
4429
4674
|
get teardrops(): PadTeardrops | undefined;
|
|
4430
4675
|
set teardrops(value: PadTeardrops | undefined);
|
|
4431
|
-
get tstamp():
|
|
4432
|
-
set tstamp(value: string | undefined);
|
|
4676
|
+
get tstamp(): Tstamp | undefined;
|
|
4677
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
4433
4678
|
getChildren(): SxClass[];
|
|
4434
4679
|
getString(): string;
|
|
4435
4680
|
}
|
|
@@ -4522,4 +4767,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
|
|
|
4522
4767
|
declare const parseKicadPcb: (sexpr: string) => KicadPcb;
|
|
4523
4768
|
declare const parseKicadMod: (sexpr: string) => Footprint;
|
|
4524
4769
|
|
|
4525
|
-
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, 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 };
|