circuit-json 0.0.238 → 0.0.240
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/README.md +25 -2
- package/dist/index.d.mts +148 -1
- package/dist/index.mjs +726 -706
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,9 +28,9 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
28
28
|
|
|
29
29
|
- Generate [Gerber files](https://github.com/tscircuit/circuit-json-to-gerber)
|
|
30
30
|
- Generate and read [Specctra DSN Autorouting files](https://github.com/tscircuit/dsn-converter)
|
|
31
|
-
- Generate [Pick'n'Place Files](https://github.com/tscircuit/circuit-json-to-pnp)
|
|
31
|
+
- Generate [Pick'n'Place Files](https://github.com/tscircuit/circuit-json-to-pnp-csv)
|
|
32
32
|
- Generate [PCB and Schematic SVGs](https://github.com/tscircuit/circuit-to-svg)
|
|
33
|
-
- Generate [Bill of Materials](https://github.com/tscircuit/circuit-json-to-bom)
|
|
33
|
+
- Generate [Bill of Materials](https://github.com/tscircuit/circuit-json-to-bom-csv)
|
|
34
34
|
- Generate [SPICE netlists and simulations](https://github.com/tscircuit/circuit-json-to-spice)
|
|
35
35
|
- Display [PCBs on the web](https://github.com/tscircuit/pcb-viewer)
|
|
36
36
|
- Display [Schematics on the web](https://github.com/tscircuit/schematic-viewer)
|
|
@@ -49,6 +49,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
49
49
|
- [SourceComponentBase](#sourcecomponentbase)
|
|
50
50
|
- [SourceFailedToCreateComponentError](#sourcefailedtocreatecomponenterror)
|
|
51
51
|
- [SourceGroup](#sourcegroup)
|
|
52
|
+
- [SourceManuallyPlacedVia](#sourcemanuallyplacedvia)
|
|
52
53
|
- [SourceMissingPropertyError](#sourcemissingpropertyerror)
|
|
53
54
|
- [SourceNet](#sourcenet)
|
|
54
55
|
- [SourcePcbGroundPlane](#sourcepcbgroundplane)
|
|
@@ -268,6 +269,27 @@ interface SourceGroup {
|
|
|
268
269
|
}
|
|
269
270
|
```
|
|
270
271
|
|
|
272
|
+
### SourceManuallyPlacedVia
|
|
273
|
+
|
|
274
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_manually_placed_via.ts)
|
|
275
|
+
|
|
276
|
+
Defines a via that is manually placed in the source domain
|
|
277
|
+
|
|
278
|
+
```typescript
|
|
279
|
+
/** Defines a via that is manually placed in the source domain */
|
|
280
|
+
interface SourceManuallyPlacedVia {
|
|
281
|
+
type: "source_manually_placed_via"
|
|
282
|
+
source_manually_placed_via_id: string
|
|
283
|
+
source_group_id: string
|
|
284
|
+
source_net_id: string
|
|
285
|
+
x: Distance
|
|
286
|
+
y: Distance
|
|
287
|
+
layers: LayerRef[]
|
|
288
|
+
subcircuit_id?: string
|
|
289
|
+
source_trace_id?: string
|
|
290
|
+
}
|
|
291
|
+
```
|
|
292
|
+
|
|
271
293
|
### SourceMissingPropertyError
|
|
272
294
|
|
|
273
295
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_missing_property_error.ts)
|
|
@@ -301,6 +323,7 @@ interface SourceNet {
|
|
|
301
323
|
is_ground?: boolean
|
|
302
324
|
is_digital_signal?: boolean
|
|
303
325
|
is_analog_signal?: boolean
|
|
326
|
+
is_positive_voltage_source?: boolean
|
|
304
327
|
trace_width?: number
|
|
305
328
|
subcircuit_id?: string
|
|
306
329
|
subcircuit_connectivity_map_key?: string
|
package/dist/index.d.mts
CHANGED
|
@@ -8347,6 +8347,7 @@ declare const source_net: z.ZodObject<{
|
|
|
8347
8347
|
is_ground: z.ZodOptional<z.ZodBoolean>;
|
|
8348
8348
|
is_digital_signal: z.ZodOptional<z.ZodBoolean>;
|
|
8349
8349
|
is_analog_signal: z.ZodOptional<z.ZodBoolean>;
|
|
8350
|
+
is_positive_voltage_source: z.ZodOptional<z.ZodBoolean>;
|
|
8350
8351
|
trace_width: z.ZodOptional<z.ZodNumber>;
|
|
8351
8352
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8352
8353
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
@@ -8362,6 +8363,7 @@ declare const source_net: z.ZodObject<{
|
|
|
8362
8363
|
is_ground?: boolean | undefined;
|
|
8363
8364
|
is_digital_signal?: boolean | undefined;
|
|
8364
8365
|
is_analog_signal?: boolean | undefined;
|
|
8366
|
+
is_positive_voltage_source?: boolean | undefined;
|
|
8365
8367
|
}, {
|
|
8366
8368
|
type: "source_net";
|
|
8367
8369
|
name: string;
|
|
@@ -8374,6 +8376,7 @@ declare const source_net: z.ZodObject<{
|
|
|
8374
8376
|
is_ground?: boolean | undefined;
|
|
8375
8377
|
is_digital_signal?: boolean | undefined;
|
|
8376
8378
|
is_analog_signal?: boolean | undefined;
|
|
8379
|
+
is_positive_voltage_source?: boolean | undefined;
|
|
8377
8380
|
}>;
|
|
8378
8381
|
type SourceNetInput = z.input<typeof source_net>;
|
|
8379
8382
|
interface SourceNet {
|
|
@@ -8385,6 +8388,7 @@ interface SourceNet {
|
|
|
8385
8388
|
is_ground?: boolean;
|
|
8386
8389
|
is_digital_signal?: boolean;
|
|
8387
8390
|
is_analog_signal?: boolean;
|
|
8391
|
+
is_positive_voltage_source?: boolean;
|
|
8388
8392
|
trace_width?: number;
|
|
8389
8393
|
subcircuit_id?: string;
|
|
8390
8394
|
subcircuit_connectivity_map_key?: string;
|
|
@@ -8421,6 +8425,63 @@ interface SourcePcbGroundPlane {
|
|
|
8421
8425
|
subcircuit_id?: string;
|
|
8422
8426
|
}
|
|
8423
8427
|
|
|
8428
|
+
declare const source_manually_placed_via: z.ZodObject<{
|
|
8429
|
+
type: z.ZodLiteral<"source_manually_placed_via">;
|
|
8430
|
+
source_manually_placed_via_id: z.ZodString;
|
|
8431
|
+
source_group_id: z.ZodString;
|
|
8432
|
+
source_net_id: z.ZodString;
|
|
8433
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8434
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8435
|
+
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
8436
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
8437
|
+
}, "strip", z.ZodTypeAny, {
|
|
8438
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8439
|
+
}, {
|
|
8440
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8441
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8442
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8443
|
+
}>, "many">;
|
|
8444
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8445
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
8446
|
+
}, "strip", z.ZodTypeAny, {
|
|
8447
|
+
x: number;
|
|
8448
|
+
y: number;
|
|
8449
|
+
type: "source_manually_placed_via";
|
|
8450
|
+
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
8451
|
+
source_group_id: string;
|
|
8452
|
+
source_net_id: string;
|
|
8453
|
+
source_manually_placed_via_id: string;
|
|
8454
|
+
subcircuit_id?: string | undefined;
|
|
8455
|
+
source_trace_id?: string | undefined;
|
|
8456
|
+
}, {
|
|
8457
|
+
x: string | number;
|
|
8458
|
+
y: string | number;
|
|
8459
|
+
type: "source_manually_placed_via";
|
|
8460
|
+
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8461
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8462
|
+
})[];
|
|
8463
|
+
source_group_id: string;
|
|
8464
|
+
source_net_id: string;
|
|
8465
|
+
source_manually_placed_via_id: string;
|
|
8466
|
+
subcircuit_id?: string | undefined;
|
|
8467
|
+
source_trace_id?: string | undefined;
|
|
8468
|
+
}>;
|
|
8469
|
+
type SourceManuallyPlacedViaInput = z.input<typeof source_manually_placed_via>;
|
|
8470
|
+
/**
|
|
8471
|
+
* Defines a via that is manually placed in the source domain
|
|
8472
|
+
*/
|
|
8473
|
+
interface SourceManuallyPlacedVia {
|
|
8474
|
+
type: "source_manually_placed_via";
|
|
8475
|
+
source_manually_placed_via_id: string;
|
|
8476
|
+
source_group_id: string;
|
|
8477
|
+
source_net_id: string;
|
|
8478
|
+
x: Distance;
|
|
8479
|
+
y: Distance;
|
|
8480
|
+
layers: LayerRef[];
|
|
8481
|
+
subcircuit_id?: string;
|
|
8482
|
+
source_trace_id?: string;
|
|
8483
|
+
}
|
|
8484
|
+
|
|
8424
8485
|
declare const cad_component: z.ZodObject<{
|
|
8425
8486
|
type: z.ZodLiteral<"cad_component">;
|
|
8426
8487
|
cad_component_id: z.ZodString;
|
|
@@ -9813,6 +9874,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9813
9874
|
is_ground: z.ZodOptional<z.ZodBoolean>;
|
|
9814
9875
|
is_digital_signal: z.ZodOptional<z.ZodBoolean>;
|
|
9815
9876
|
is_analog_signal: z.ZodOptional<z.ZodBoolean>;
|
|
9877
|
+
is_positive_voltage_source: z.ZodOptional<z.ZodBoolean>;
|
|
9816
9878
|
trace_width: z.ZodOptional<z.ZodNumber>;
|
|
9817
9879
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9818
9880
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
@@ -9828,6 +9890,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9828
9890
|
is_ground?: boolean | undefined;
|
|
9829
9891
|
is_digital_signal?: boolean | undefined;
|
|
9830
9892
|
is_analog_signal?: boolean | undefined;
|
|
9893
|
+
is_positive_voltage_source?: boolean | undefined;
|
|
9831
9894
|
}, {
|
|
9832
9895
|
type: "source_net";
|
|
9833
9896
|
name: string;
|
|
@@ -9840,6 +9903,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9840
9903
|
is_ground?: boolean | undefined;
|
|
9841
9904
|
is_digital_signal?: boolean | undefined;
|
|
9842
9905
|
is_analog_signal?: boolean | undefined;
|
|
9906
|
+
is_positive_voltage_source?: boolean | undefined;
|
|
9843
9907
|
}>, z.ZodObject<{
|
|
9844
9908
|
type: z.ZodLiteral<"source_group">;
|
|
9845
9909
|
source_group_id: z.ZodString;
|
|
@@ -10592,6 +10656,46 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10592
10656
|
source_net_id: string;
|
|
10593
10657
|
source_pcb_ground_plane_id: string;
|
|
10594
10658
|
subcircuit_id?: string | undefined;
|
|
10659
|
+
}>, z.ZodObject<{
|
|
10660
|
+
type: z.ZodLiteral<"source_manually_placed_via">;
|
|
10661
|
+
source_manually_placed_via_id: z.ZodString;
|
|
10662
|
+
source_group_id: z.ZodString;
|
|
10663
|
+
source_net_id: z.ZodString;
|
|
10664
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10665
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10666
|
+
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
10667
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
10668
|
+
}, "strip", z.ZodTypeAny, {
|
|
10669
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10670
|
+
}, {
|
|
10671
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10672
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
10673
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10674
|
+
}>, "many">;
|
|
10675
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10676
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
10677
|
+
}, "strip", z.ZodTypeAny, {
|
|
10678
|
+
x: number;
|
|
10679
|
+
y: number;
|
|
10680
|
+
type: "source_manually_placed_via";
|
|
10681
|
+
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
10682
|
+
source_group_id: string;
|
|
10683
|
+
source_net_id: string;
|
|
10684
|
+
source_manually_placed_via_id: string;
|
|
10685
|
+
subcircuit_id?: string | undefined;
|
|
10686
|
+
source_trace_id?: string | undefined;
|
|
10687
|
+
}, {
|
|
10688
|
+
x: string | number;
|
|
10689
|
+
y: string | number;
|
|
10690
|
+
type: "source_manually_placed_via";
|
|
10691
|
+
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
10692
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10693
|
+
})[];
|
|
10694
|
+
source_group_id: string;
|
|
10695
|
+
source_net_id: string;
|
|
10696
|
+
source_manually_placed_via_id: string;
|
|
10697
|
+
subcircuit_id?: string | undefined;
|
|
10698
|
+
source_trace_id?: string | undefined;
|
|
10595
10699
|
}>, z.ZodObject<{
|
|
10596
10700
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
10597
10701
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -15449,6 +15553,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15449
15553
|
is_ground: z.ZodOptional<z.ZodBoolean>;
|
|
15450
15554
|
is_digital_signal: z.ZodOptional<z.ZodBoolean>;
|
|
15451
15555
|
is_analog_signal: z.ZodOptional<z.ZodBoolean>;
|
|
15556
|
+
is_positive_voltage_source: z.ZodOptional<z.ZodBoolean>;
|
|
15452
15557
|
trace_width: z.ZodOptional<z.ZodNumber>;
|
|
15453
15558
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15454
15559
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
@@ -15464,6 +15569,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15464
15569
|
is_ground?: boolean | undefined;
|
|
15465
15570
|
is_digital_signal?: boolean | undefined;
|
|
15466
15571
|
is_analog_signal?: boolean | undefined;
|
|
15572
|
+
is_positive_voltage_source?: boolean | undefined;
|
|
15467
15573
|
}, {
|
|
15468
15574
|
type: "source_net";
|
|
15469
15575
|
name: string;
|
|
@@ -15476,6 +15582,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15476
15582
|
is_ground?: boolean | undefined;
|
|
15477
15583
|
is_digital_signal?: boolean | undefined;
|
|
15478
15584
|
is_analog_signal?: boolean | undefined;
|
|
15585
|
+
is_positive_voltage_source?: boolean | undefined;
|
|
15479
15586
|
}>, z.ZodObject<{
|
|
15480
15587
|
type: z.ZodLiteral<"source_group">;
|
|
15481
15588
|
source_group_id: z.ZodString;
|
|
@@ -16228,6 +16335,46 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16228
16335
|
source_net_id: string;
|
|
16229
16336
|
source_pcb_ground_plane_id: string;
|
|
16230
16337
|
subcircuit_id?: string | undefined;
|
|
16338
|
+
}>, z.ZodObject<{
|
|
16339
|
+
type: z.ZodLiteral<"source_manually_placed_via">;
|
|
16340
|
+
source_manually_placed_via_id: z.ZodString;
|
|
16341
|
+
source_group_id: z.ZodString;
|
|
16342
|
+
source_net_id: z.ZodString;
|
|
16343
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16344
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16345
|
+
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
16346
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
16347
|
+
}, "strip", z.ZodTypeAny, {
|
|
16348
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16349
|
+
}, {
|
|
16350
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16351
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
16352
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16353
|
+
}>, "many">;
|
|
16354
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16355
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
16356
|
+
}, "strip", z.ZodTypeAny, {
|
|
16357
|
+
x: number;
|
|
16358
|
+
y: number;
|
|
16359
|
+
type: "source_manually_placed_via";
|
|
16360
|
+
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
16361
|
+
source_group_id: string;
|
|
16362
|
+
source_net_id: string;
|
|
16363
|
+
source_manually_placed_via_id: string;
|
|
16364
|
+
subcircuit_id?: string | undefined;
|
|
16365
|
+
source_trace_id?: string | undefined;
|
|
16366
|
+
}, {
|
|
16367
|
+
x: string | number;
|
|
16368
|
+
y: string | number;
|
|
16369
|
+
type: "source_manually_placed_via";
|
|
16370
|
+
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
16371
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16372
|
+
})[];
|
|
16373
|
+
source_group_id: string;
|
|
16374
|
+
source_net_id: string;
|
|
16375
|
+
source_manually_placed_via_id: string;
|
|
16376
|
+
subcircuit_id?: string | undefined;
|
|
16377
|
+
source_trace_id?: string | undefined;
|
|
16231
16378
|
}>, z.ZodObject<{
|
|
16232
16379
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
16233
16380
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -20019,4 +20166,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
20019
20166
|
*/
|
|
20020
20167
|
type CircuitJson = AnyCircuitElement[];
|
|
20021
20168
|
|
|
20022
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|
|
20169
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|