circuit-json 0.0.120 → 0.0.122
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 +15 -0
- package/dist/index.d.mts +189 -13
- package/dist/index.mjs +410 -394
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -56,6 +56,7 @@ and is the primary way that Circuit JSON is defined and maintained.
|
|
|
56
56
|
- [SourceSimplePushButton](#sourcesimplepushbutton)
|
|
57
57
|
- [SourceSimpleResistor](#sourcesimpleresistor)
|
|
58
58
|
- [SourceSimpleResonator](#sourcesimpleresonator)
|
|
59
|
+
- [SourceSimpleTransistor](#sourcesimpletransistor)
|
|
59
60
|
- [SourceTrace](#sourcetrace)
|
|
60
61
|
- [PCB Elements](#pcb-elements)
|
|
61
62
|
- [PcbBoard](#pcbboard)
|
|
@@ -329,6 +330,19 @@ interface SourceSimpleResonator extends SourceComponentBase {
|
|
|
329
330
|
}
|
|
330
331
|
```
|
|
331
332
|
|
|
333
|
+
### SourceSimpleTransistor
|
|
334
|
+
|
|
335
|
+
```typescript
|
|
336
|
+
/** Defines a simple transistor component
|
|
337
|
+
* This is a three-pin semiconductor device (emitter, base, collector)
|
|
338
|
+
* Pin configuration is handled by the schematic port system */
|
|
339
|
+
|
|
340
|
+
interface SourceSimpleTransistor extends SourceComponentBase {
|
|
341
|
+
ftype: "simple_transistor"
|
|
342
|
+
transistor_type: "npn" | "pnp"
|
|
343
|
+
}
|
|
344
|
+
```
|
|
345
|
+
|
|
332
346
|
### SourceTrace
|
|
333
347
|
|
|
334
348
|
```typescript
|
|
@@ -712,6 +726,7 @@ interface PcbText {
|
|
|
712
726
|
width: Length
|
|
713
727
|
height: Length
|
|
714
728
|
lines: number
|
|
729
|
+
// @ts-ignore
|
|
715
730
|
align: "bottom-left"
|
|
716
731
|
}
|
|
717
732
|
```
|
package/dist/index.d.mts
CHANGED
|
@@ -853,6 +853,35 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
853
853
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
854
854
|
display_value?: string | undefined;
|
|
855
855
|
equivalent_series_resistance?: string | number | undefined;
|
|
856
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
857
|
+
type: z.ZodLiteral<"source_component">;
|
|
858
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
859
|
+
source_component_id: z.ZodString;
|
|
860
|
+
name: z.ZodString;
|
|
861
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
862
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
863
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
864
|
+
}, {
|
|
865
|
+
ftype: z.ZodLiteral<"simple_transistor">;
|
|
866
|
+
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
867
|
+
}>, "strip", z.ZodTypeAny, {
|
|
868
|
+
type: "source_component";
|
|
869
|
+
ftype: "simple_transistor";
|
|
870
|
+
source_component_id: string;
|
|
871
|
+
name: string;
|
|
872
|
+
transistor_type: "npn" | "pnp";
|
|
873
|
+
manufacturer_part_number?: string | undefined;
|
|
874
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
875
|
+
display_value?: string | undefined;
|
|
876
|
+
}, {
|
|
877
|
+
type: "source_component";
|
|
878
|
+
ftype: "simple_transistor";
|
|
879
|
+
source_component_id: string;
|
|
880
|
+
name: string;
|
|
881
|
+
transistor_type: "npn" | "pnp";
|
|
882
|
+
manufacturer_part_number?: string | undefined;
|
|
883
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
884
|
+
display_value?: string | undefined;
|
|
856
885
|
}>]>;
|
|
857
886
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
858
887
|
|
|
@@ -1047,9 +1076,6 @@ interface SourceSimpleInductor extends SourceComponentBase {
|
|
|
1047
1076
|
}
|
|
1048
1077
|
|
|
1049
1078
|
declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
1050
|
-
/**
|
|
1051
|
-
* Defines a simple push button component
|
|
1052
|
-
*/
|
|
1053
1079
|
type: z.ZodLiteral<"source_component">;
|
|
1054
1080
|
ftype: z.ZodOptional<z.ZodString>;
|
|
1055
1081
|
source_component_id: z.ZodString;
|
|
@@ -1121,9 +1147,6 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1121
1147
|
type: z.ZodLiteral<"source_component">;
|
|
1122
1148
|
ftype: z.ZodOptional<z.ZodString>;
|
|
1123
1149
|
source_component_id: z.ZodString;
|
|
1124
|
-
/**
|
|
1125
|
-
* Defines a simple crystal oscillator component
|
|
1126
|
-
*/
|
|
1127
1150
|
name: z.ZodString;
|
|
1128
1151
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
1129
1152
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -1246,6 +1269,47 @@ interface SourceSimpleResonator extends SourceComponentBase {
|
|
|
1246
1269
|
frequency: number;
|
|
1247
1270
|
}
|
|
1248
1271
|
|
|
1272
|
+
declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
1273
|
+
type: z.ZodLiteral<"source_component">;
|
|
1274
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
1275
|
+
source_component_id: z.ZodString;
|
|
1276
|
+
name: z.ZodString;
|
|
1277
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
1278
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
1279
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
1280
|
+
}, {
|
|
1281
|
+
ftype: z.ZodLiteral<"simple_transistor">;
|
|
1282
|
+
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
1283
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1284
|
+
type: "source_component";
|
|
1285
|
+
ftype: "simple_transistor";
|
|
1286
|
+
source_component_id: string;
|
|
1287
|
+
name: string;
|
|
1288
|
+
transistor_type: "npn" | "pnp";
|
|
1289
|
+
manufacturer_part_number?: string | undefined;
|
|
1290
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1291
|
+
display_value?: string | undefined;
|
|
1292
|
+
}, {
|
|
1293
|
+
type: "source_component";
|
|
1294
|
+
ftype: "simple_transistor";
|
|
1295
|
+
source_component_id: string;
|
|
1296
|
+
name: string;
|
|
1297
|
+
transistor_type: "npn" | "pnp";
|
|
1298
|
+
manufacturer_part_number?: string | undefined;
|
|
1299
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1300
|
+
display_value?: string | undefined;
|
|
1301
|
+
}>;
|
|
1302
|
+
type SourceSimpleTransistorInput = z.input<typeof source_simple_transistor>;
|
|
1303
|
+
/**
|
|
1304
|
+
* Defines a simple transistor component
|
|
1305
|
+
* This is a three-pin semiconductor device (emitter, base, collector)
|
|
1306
|
+
* Pin configuration is handled by the schematic port system
|
|
1307
|
+
*/
|
|
1308
|
+
interface SourceSimpleTransistor extends SourceComponentBase {
|
|
1309
|
+
ftype: "simple_transistor";
|
|
1310
|
+
transistor_type: "npn" | "pnp";
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1249
1313
|
interface SchematicBox {
|
|
1250
1314
|
type: "schematic_box";
|
|
1251
1315
|
schematic_component_id: string;
|
|
@@ -5386,6 +5450,35 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5386
5450
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5387
5451
|
display_value?: string | undefined;
|
|
5388
5452
|
equivalent_series_resistance?: string | number | undefined;
|
|
5453
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5454
|
+
type: z.ZodLiteral<"source_component">;
|
|
5455
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
5456
|
+
source_component_id: z.ZodString;
|
|
5457
|
+
name: z.ZodString;
|
|
5458
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5459
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5460
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5461
|
+
}, {
|
|
5462
|
+
ftype: z.ZodLiteral<"simple_transistor">;
|
|
5463
|
+
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
5464
|
+
}>, "strip", z.ZodTypeAny, {
|
|
5465
|
+
type: "source_component";
|
|
5466
|
+
ftype: "simple_transistor";
|
|
5467
|
+
source_component_id: string;
|
|
5468
|
+
name: string;
|
|
5469
|
+
transistor_type: "npn" | "pnp";
|
|
5470
|
+
manufacturer_part_number?: string | undefined;
|
|
5471
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5472
|
+
display_value?: string | undefined;
|
|
5473
|
+
}, {
|
|
5474
|
+
type: "source_component";
|
|
5475
|
+
ftype: "simple_transistor";
|
|
5476
|
+
source_component_id: string;
|
|
5477
|
+
name: string;
|
|
5478
|
+
transistor_type: "npn" | "pnp";
|
|
5479
|
+
manufacturer_part_number?: string | undefined;
|
|
5480
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5481
|
+
display_value?: string | undefined;
|
|
5389
5482
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
5390
5483
|
type: z.ZodLiteral<"source_component">;
|
|
5391
5484
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5754,6 +5847,35 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5754
5847
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5755
5848
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5756
5849
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5850
|
+
}, {
|
|
5851
|
+
ftype: z.ZodLiteral<"simple_transistor">;
|
|
5852
|
+
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
5853
|
+
}>, "strip", z.ZodTypeAny, {
|
|
5854
|
+
type: "source_component";
|
|
5855
|
+
ftype: "simple_transistor";
|
|
5856
|
+
source_component_id: string;
|
|
5857
|
+
name: string;
|
|
5858
|
+
transistor_type: "npn" | "pnp";
|
|
5859
|
+
manufacturer_part_number?: string | undefined;
|
|
5860
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5861
|
+
display_value?: string | undefined;
|
|
5862
|
+
}, {
|
|
5863
|
+
type: "source_component";
|
|
5864
|
+
ftype: "simple_transistor";
|
|
5865
|
+
source_component_id: string;
|
|
5866
|
+
name: string;
|
|
5867
|
+
transistor_type: "npn" | "pnp";
|
|
5868
|
+
manufacturer_part_number?: string | undefined;
|
|
5869
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5870
|
+
display_value?: string | undefined;
|
|
5871
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5872
|
+
type: z.ZodLiteral<"source_component">;
|
|
5873
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
5874
|
+
source_component_id: z.ZodString;
|
|
5875
|
+
name: z.ZodString;
|
|
5876
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5877
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5878
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5757
5879
|
}, {
|
|
5758
5880
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
5759
5881
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7303,9 +7425,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7303
7425
|
box_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7304
7426
|
symbol_name: z.ZodOptional<z.ZodString>;
|
|
7305
7427
|
port_arrangement: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
7306
|
-
left_size: z.ZodNumber;
|
|
7307
|
-
* @deprecated use any_circuit_element instead
|
|
7308
|
-
*/
|
|
7428
|
+
left_size: z.ZodNumber;
|
|
7309
7429
|
right_size: z.ZodNumber;
|
|
7310
7430
|
top_size: z.ZodOptional<z.ZodNumber>;
|
|
7311
7431
|
bottom_size: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8497,6 +8617,35 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8497
8617
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8498
8618
|
display_value?: string | undefined;
|
|
8499
8619
|
equivalent_series_resistance?: string | number | undefined;
|
|
8620
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8621
|
+
type: z.ZodLiteral<"source_component">;
|
|
8622
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
8623
|
+
source_component_id: z.ZodString;
|
|
8624
|
+
name: z.ZodString;
|
|
8625
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
8626
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
8627
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
8628
|
+
}, {
|
|
8629
|
+
ftype: z.ZodLiteral<"simple_transistor">;
|
|
8630
|
+
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
8631
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8632
|
+
type: "source_component";
|
|
8633
|
+
ftype: "simple_transistor";
|
|
8634
|
+
source_component_id: string;
|
|
8635
|
+
name: string;
|
|
8636
|
+
transistor_type: "npn" | "pnp";
|
|
8637
|
+
manufacturer_part_number?: string | undefined;
|
|
8638
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8639
|
+
display_value?: string | undefined;
|
|
8640
|
+
}, {
|
|
8641
|
+
type: "source_component";
|
|
8642
|
+
ftype: "simple_transistor";
|
|
8643
|
+
source_component_id: string;
|
|
8644
|
+
name: string;
|
|
8645
|
+
transistor_type: "npn" | "pnp";
|
|
8646
|
+
manufacturer_part_number?: string | undefined;
|
|
8647
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8648
|
+
display_value?: string | undefined;
|
|
8500
8649
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
8501
8650
|
type: z.ZodLiteral<"source_component">;
|
|
8502
8651
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -8865,6 +9014,35 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8865
9014
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
8866
9015
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
8867
9016
|
display_value: z.ZodOptional<z.ZodString>;
|
|
9017
|
+
}, {
|
|
9018
|
+
ftype: z.ZodLiteral<"simple_transistor">;
|
|
9019
|
+
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
9020
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9021
|
+
type: "source_component";
|
|
9022
|
+
ftype: "simple_transistor";
|
|
9023
|
+
source_component_id: string;
|
|
9024
|
+
name: string;
|
|
9025
|
+
transistor_type: "npn" | "pnp";
|
|
9026
|
+
manufacturer_part_number?: string | undefined;
|
|
9027
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9028
|
+
display_value?: string | undefined;
|
|
9029
|
+
}, {
|
|
9030
|
+
type: "source_component";
|
|
9031
|
+
ftype: "simple_transistor";
|
|
9032
|
+
source_component_id: string;
|
|
9033
|
+
name: string;
|
|
9034
|
+
transistor_type: "npn" | "pnp";
|
|
9035
|
+
manufacturer_part_number?: string | undefined;
|
|
9036
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9037
|
+
display_value?: string | undefined;
|
|
9038
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9039
|
+
type: z.ZodLiteral<"source_component">;
|
|
9040
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
9041
|
+
source_component_id: z.ZodString;
|
|
9042
|
+
name: z.ZodString;
|
|
9043
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
9044
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9045
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
8868
9046
|
}, {
|
|
8869
9047
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
8870
9048
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10414,9 +10592,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10414
10592
|
box_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10415
10593
|
symbol_name: z.ZodOptional<z.ZodString>;
|
|
10416
10594
|
port_arrangement: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10417
|
-
left_size: z.ZodNumber;
|
|
10418
|
-
* @deprecated use any_circuit_element instead
|
|
10419
|
-
*/
|
|
10595
|
+
left_size: z.ZodNumber;
|
|
10420
10596
|
right_size: z.ZodNumber;
|
|
10421
10597
|
top_size: z.ZodOptional<z.ZodNumber>;
|
|
10422
10598
|
bottom_size: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11151,4 +11327,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
11151
11327
|
*/
|
|
11152
11328
|
type CircuitJson = AnyCircuitElement[];
|
|
11153
11329
|
|
|
11154
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type CadComponent, type CadComponentInput, type CircuitJson, type Distance, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBManualEditConflictError, 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 PCBVia, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleOval, type PcbHoleOvalInput, type PcbManualEditConflictError, type PcbManualEditConflictErrorInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, 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 PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, 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 SchematicLine, type SchematicLineInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, 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 SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, 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, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_error, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, 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_solder_paste, pcb_text, pcb_trace, pcb_trace_error, pcb_trace_hint, 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_line, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_group, source_led, source_net, source_port, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_trace, supplier_name, time, visible_layer, voltage };
|
|
11330
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type CadComponent, type CadComponentInput, type CircuitJson, type Distance, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBManualEditConflictError, 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 PCBVia, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleOval, type PcbHoleOvalInput, type PcbManualEditConflictError, type PcbManualEditConflictErrorInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, 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 PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, 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 SchematicLine, type SchematicLineInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, 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 SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, 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, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_error, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, 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_solder_paste, pcb_text, pcb_trace, pcb_trace_error, pcb_trace_hint, 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_line, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_group, source_led, source_net, source_port, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|