circuit-json 0.0.136 → 0.0.138
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 +12 -0
- package/dist/index.d.mts +166 -1
- package/dist/index.mjs +491 -481
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,6 +57,7 @@ and is the primary way that Circuit JSON is defined and maintained.
|
|
|
57
57
|
- [SourceSimplePushButton](#sourcesimplepushbutton)
|
|
58
58
|
- [SourceSimpleResistor](#sourcesimpleresistor)
|
|
59
59
|
- [SourceSimpleResonator](#sourcesimpleresonator)
|
|
60
|
+
- [SourceSimpleSwitch](#sourcesimpleswitch)
|
|
60
61
|
- [SourceSimpleTransistor](#sourcesimpletransistor)
|
|
61
62
|
- [SourceTrace](#sourcetrace)
|
|
62
63
|
- [PCB Elements](#pcb-elements)
|
|
@@ -349,6 +350,17 @@ interface SourceSimpleResonator extends SourceComponentBase {
|
|
|
349
350
|
}
|
|
350
351
|
```
|
|
351
352
|
|
|
353
|
+
### SourceSimpleSwitch
|
|
354
|
+
|
|
355
|
+
Defines a simple switch component
|
|
356
|
+
|
|
357
|
+
```typescript
|
|
358
|
+
/** Defines a simple switch component */
|
|
359
|
+
interface SourceSimpleSwitch extends SourceComponentBase {
|
|
360
|
+
ftype: "simple_switch"
|
|
361
|
+
}
|
|
362
|
+
```
|
|
363
|
+
|
|
352
364
|
### SourceSimpleTransistor
|
|
353
365
|
|
|
354
366
|
```typescript
|
package/dist/index.d.mts
CHANGED
|
@@ -882,6 +882,32 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
882
882
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
883
883
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
884
884
|
display_value: z.ZodOptional<z.ZodString>;
|
|
885
|
+
}, {
|
|
886
|
+
ftype: z.ZodLiteral<"simple_switch">;
|
|
887
|
+
}>, "strip", z.ZodTypeAny, {
|
|
888
|
+
type: "source_component";
|
|
889
|
+
ftype: "simple_switch";
|
|
890
|
+
source_component_id: string;
|
|
891
|
+
name: string;
|
|
892
|
+
manufacturer_part_number?: string | undefined;
|
|
893
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
894
|
+
display_value?: string | undefined;
|
|
895
|
+
}, {
|
|
896
|
+
type: "source_component";
|
|
897
|
+
ftype: "simple_switch";
|
|
898
|
+
source_component_id: string;
|
|
899
|
+
name: string;
|
|
900
|
+
manufacturer_part_number?: string | undefined;
|
|
901
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
902
|
+
display_value?: string | undefined;
|
|
903
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
904
|
+
type: z.ZodLiteral<"source_component">;
|
|
905
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
906
|
+
source_component_id: z.ZodString;
|
|
907
|
+
name: z.ZodString;
|
|
908
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
909
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
910
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
885
911
|
}, {
|
|
886
912
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
887
913
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -1347,6 +1373,41 @@ interface SourceSimpleResonator extends SourceComponentBase {
|
|
|
1347
1373
|
frequency: number;
|
|
1348
1374
|
}
|
|
1349
1375
|
|
|
1376
|
+
declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
1377
|
+
type: z.ZodLiteral<"source_component">;
|
|
1378
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
1379
|
+
source_component_id: z.ZodString;
|
|
1380
|
+
name: z.ZodString;
|
|
1381
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
1382
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
1383
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
1384
|
+
}, {
|
|
1385
|
+
ftype: z.ZodLiteral<"simple_switch">;
|
|
1386
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1387
|
+
type: "source_component";
|
|
1388
|
+
ftype: "simple_switch";
|
|
1389
|
+
source_component_id: string;
|
|
1390
|
+
name: string;
|
|
1391
|
+
manufacturer_part_number?: string | undefined;
|
|
1392
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1393
|
+
display_value?: string | undefined;
|
|
1394
|
+
}, {
|
|
1395
|
+
type: "source_component";
|
|
1396
|
+
ftype: "simple_switch";
|
|
1397
|
+
source_component_id: string;
|
|
1398
|
+
name: string;
|
|
1399
|
+
manufacturer_part_number?: string | undefined;
|
|
1400
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1401
|
+
display_value?: string | undefined;
|
|
1402
|
+
}>;
|
|
1403
|
+
type SourceSimpleSwitchInput = z.input<typeof source_simple_switch>;
|
|
1404
|
+
/**
|
|
1405
|
+
* Defines a simple switch component
|
|
1406
|
+
*/
|
|
1407
|
+
interface SourceSimpleSwitch extends SourceComponentBase {
|
|
1408
|
+
ftype: "simple_switch";
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1350
1411
|
declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
1351
1412
|
type: z.ZodLiteral<"source_component">;
|
|
1352
1413
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6055,6 +6116,32 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6055
6116
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6056
6117
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6057
6118
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6119
|
+
}, {
|
|
6120
|
+
ftype: z.ZodLiteral<"simple_switch">;
|
|
6121
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6122
|
+
type: "source_component";
|
|
6123
|
+
ftype: "simple_switch";
|
|
6124
|
+
source_component_id: string;
|
|
6125
|
+
name: string;
|
|
6126
|
+
manufacturer_part_number?: string | undefined;
|
|
6127
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6128
|
+
display_value?: string | undefined;
|
|
6129
|
+
}, {
|
|
6130
|
+
type: "source_component";
|
|
6131
|
+
ftype: "simple_switch";
|
|
6132
|
+
source_component_id: string;
|
|
6133
|
+
name: string;
|
|
6134
|
+
manufacturer_part_number?: string | undefined;
|
|
6135
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6136
|
+
display_value?: string | undefined;
|
|
6137
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6138
|
+
type: z.ZodLiteral<"source_component">;
|
|
6139
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
6140
|
+
source_component_id: z.ZodString;
|
|
6141
|
+
name: z.ZodString;
|
|
6142
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6143
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6144
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6058
6145
|
}, {
|
|
6059
6146
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
6060
6147
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -6494,6 +6581,32 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6494
6581
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6495
6582
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6496
6583
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6584
|
+
}, {
|
|
6585
|
+
ftype: z.ZodLiteral<"simple_switch">;
|
|
6586
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6587
|
+
type: "source_component";
|
|
6588
|
+
ftype: "simple_switch";
|
|
6589
|
+
source_component_id: string;
|
|
6590
|
+
name: string;
|
|
6591
|
+
manufacturer_part_number?: string | undefined;
|
|
6592
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6593
|
+
display_value?: string | undefined;
|
|
6594
|
+
}, {
|
|
6595
|
+
type: "source_component";
|
|
6596
|
+
ftype: "simple_switch";
|
|
6597
|
+
source_component_id: string;
|
|
6598
|
+
name: string;
|
|
6599
|
+
manufacturer_part_number?: string | undefined;
|
|
6600
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6601
|
+
display_value?: string | undefined;
|
|
6602
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6603
|
+
type: z.ZodLiteral<"source_component">;
|
|
6604
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
6605
|
+
source_component_id: z.ZodString;
|
|
6606
|
+
name: z.ZodString;
|
|
6607
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6608
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6609
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6497
6610
|
}, {
|
|
6498
6611
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
6499
6612
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -9609,6 +9722,32 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9609
9722
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
9610
9723
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9611
9724
|
display_value: z.ZodOptional<z.ZodString>;
|
|
9725
|
+
}, {
|
|
9726
|
+
ftype: z.ZodLiteral<"simple_switch">;
|
|
9727
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9728
|
+
type: "source_component";
|
|
9729
|
+
ftype: "simple_switch";
|
|
9730
|
+
source_component_id: string;
|
|
9731
|
+
name: string;
|
|
9732
|
+
manufacturer_part_number?: string | undefined;
|
|
9733
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9734
|
+
display_value?: string | undefined;
|
|
9735
|
+
}, {
|
|
9736
|
+
type: "source_component";
|
|
9737
|
+
ftype: "simple_switch";
|
|
9738
|
+
source_component_id: string;
|
|
9739
|
+
name: string;
|
|
9740
|
+
manufacturer_part_number?: string | undefined;
|
|
9741
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9742
|
+
display_value?: string | undefined;
|
|
9743
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9744
|
+
type: z.ZodLiteral<"source_component">;
|
|
9745
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
9746
|
+
source_component_id: z.ZodString;
|
|
9747
|
+
name: z.ZodString;
|
|
9748
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
9749
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9750
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
9612
9751
|
}, {
|
|
9613
9752
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
9614
9753
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -10048,6 +10187,32 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10048
10187
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10049
10188
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10050
10189
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10190
|
+
}, {
|
|
10191
|
+
ftype: z.ZodLiteral<"simple_switch">;
|
|
10192
|
+
}>, "strip", z.ZodTypeAny, {
|
|
10193
|
+
type: "source_component";
|
|
10194
|
+
ftype: "simple_switch";
|
|
10195
|
+
source_component_id: string;
|
|
10196
|
+
name: string;
|
|
10197
|
+
manufacturer_part_number?: string | undefined;
|
|
10198
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10199
|
+
display_value?: string | undefined;
|
|
10200
|
+
}, {
|
|
10201
|
+
type: "source_component";
|
|
10202
|
+
ftype: "simple_switch";
|
|
10203
|
+
source_component_id: string;
|
|
10204
|
+
name: string;
|
|
10205
|
+
manufacturer_part_number?: string | undefined;
|
|
10206
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10207
|
+
display_value?: string | undefined;
|
|
10208
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10209
|
+
type: z.ZodLiteral<"source_component">;
|
|
10210
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
10211
|
+
source_component_id: z.ZodString;
|
|
10212
|
+
name: z.ZodString;
|
|
10213
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10214
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10215
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
10051
10216
|
}, {
|
|
10052
10217
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
10053
10218
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -12677,4 +12842,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
12677
12842
|
*/
|
|
12678
12843
|
type CircuitJson = AnyCircuitElement[];
|
|
12679
12844
|
|
|
12680
|
-
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 PcbHoleCircularWithRectPad, 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 PcbSmtPadPill, 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 SourceSimpleMosfet, type SourceSimpleMosfetInput, 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_smtpad_pill, 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_mosfet, 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 };
|
|
12845
|
+
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 PcbHoleCircularWithRectPad, 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 PcbSmtPadPill, 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 SourceSimpleMosfet, type SourceSimpleMosfetInput, 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 SourceSimpleSwitch, type SourceSimpleSwitchInput, 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_smtpad_pill, 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_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|