circuit-json 0.0.102 → 0.0.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +185 -3
- package/dist/index.mjs +378 -368
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -648,6 +648,35 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
648
648
|
manufacturer_part_number?: string | undefined;
|
|
649
649
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
650
650
|
display_value?: string | undefined;
|
|
651
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
652
|
+
type: z.ZodLiteral<"source_component">;
|
|
653
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
654
|
+
source_component_id: z.ZodString;
|
|
655
|
+
name: z.ZodString;
|
|
656
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
657
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
658
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
659
|
+
}, {
|
|
660
|
+
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
661
|
+
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
662
|
+
}>, "strip", z.ZodTypeAny, {
|
|
663
|
+
type: "source_component";
|
|
664
|
+
ftype: "simple_potentiometer";
|
|
665
|
+
source_component_id: string;
|
|
666
|
+
name: string;
|
|
667
|
+
max_resistance: number;
|
|
668
|
+
manufacturer_part_number?: string | undefined;
|
|
669
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
670
|
+
display_value?: string | undefined;
|
|
671
|
+
}, {
|
|
672
|
+
type: "source_component";
|
|
673
|
+
ftype: "simple_potentiometer";
|
|
674
|
+
source_component_id: string;
|
|
675
|
+
name: string;
|
|
676
|
+
max_resistance: string | number;
|
|
677
|
+
manufacturer_part_number?: string | undefined;
|
|
678
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
679
|
+
display_value?: string | undefined;
|
|
651
680
|
}>]>;
|
|
652
681
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
653
682
|
|
|
@@ -886,6 +915,39 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
886
915
|
type SourceSimplePushbutton = z.infer<typeof source_simple_push_button>;
|
|
887
916
|
type SourceSimplePushbuttonInput = z.input<typeof source_simple_push_button>;
|
|
888
917
|
|
|
918
|
+
declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<{
|
|
919
|
+
type: z.ZodLiteral<"source_component">;
|
|
920
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
921
|
+
source_component_id: z.ZodString;
|
|
922
|
+
name: z.ZodString;
|
|
923
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
924
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
925
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
926
|
+
}, {
|
|
927
|
+
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
928
|
+
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
929
|
+
}>, "strip", z.ZodTypeAny, {
|
|
930
|
+
type: "source_component";
|
|
931
|
+
ftype: "simple_potentiometer";
|
|
932
|
+
source_component_id: string;
|
|
933
|
+
name: string;
|
|
934
|
+
max_resistance: number;
|
|
935
|
+
manufacturer_part_number?: string | undefined;
|
|
936
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
937
|
+
display_value?: string | undefined;
|
|
938
|
+
}, {
|
|
939
|
+
type: "source_component";
|
|
940
|
+
ftype: "simple_potentiometer";
|
|
941
|
+
source_component_id: string;
|
|
942
|
+
name: string;
|
|
943
|
+
max_resistance: string | number;
|
|
944
|
+
manufacturer_part_number?: string | undefined;
|
|
945
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
946
|
+
display_value?: string | undefined;
|
|
947
|
+
}>;
|
|
948
|
+
type SourceSimplePotentiometer = z.infer<typeof source_simple_potentiometer>;
|
|
949
|
+
type SourceSimplePotentiometerInput = z.input<typeof source_simple_potentiometer>;
|
|
950
|
+
|
|
889
951
|
declare const schematic_box: z.ZodObject<{
|
|
890
952
|
type: z.ZodLiteral<"schematic_box">;
|
|
891
953
|
schematic_component_id: z.ZodString;
|
|
@@ -4650,6 +4712,35 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
4650
4712
|
manufacturer_part_number?: string | undefined;
|
|
4651
4713
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4652
4714
|
display_value?: string | undefined;
|
|
4715
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4716
|
+
type: z.ZodLiteral<"source_component">;
|
|
4717
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
4718
|
+
source_component_id: z.ZodString;
|
|
4719
|
+
name: z.ZodString;
|
|
4720
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4721
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4722
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
4723
|
+
}, {
|
|
4724
|
+
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
4725
|
+
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4726
|
+
}>, "strip", z.ZodTypeAny, {
|
|
4727
|
+
type: "source_component";
|
|
4728
|
+
ftype: "simple_potentiometer";
|
|
4729
|
+
source_component_id: string;
|
|
4730
|
+
name: string;
|
|
4731
|
+
max_resistance: number;
|
|
4732
|
+
manufacturer_part_number?: string | undefined;
|
|
4733
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4734
|
+
display_value?: string | undefined;
|
|
4735
|
+
}, {
|
|
4736
|
+
type: "source_component";
|
|
4737
|
+
ftype: "simple_potentiometer";
|
|
4738
|
+
source_component_id: string;
|
|
4739
|
+
name: string;
|
|
4740
|
+
max_resistance: string | number;
|
|
4741
|
+
manufacturer_part_number?: string | undefined;
|
|
4742
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4743
|
+
display_value?: string | undefined;
|
|
4653
4744
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4654
4745
|
type: z.ZodLiteral<"source_component">;
|
|
4655
4746
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -4951,6 +5042,35 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
4951
5042
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4952
5043
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4953
5044
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5045
|
+
}, {
|
|
5046
|
+
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
5047
|
+
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5048
|
+
}>, "strip", z.ZodTypeAny, {
|
|
5049
|
+
type: "source_component";
|
|
5050
|
+
ftype: "simple_potentiometer";
|
|
5051
|
+
source_component_id: string;
|
|
5052
|
+
name: string;
|
|
5053
|
+
max_resistance: number;
|
|
5054
|
+
manufacturer_part_number?: string | undefined;
|
|
5055
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5056
|
+
display_value?: string | undefined;
|
|
5057
|
+
}, {
|
|
5058
|
+
type: "source_component";
|
|
5059
|
+
ftype: "simple_potentiometer";
|
|
5060
|
+
source_component_id: string;
|
|
5061
|
+
name: string;
|
|
5062
|
+
max_resistance: string | number;
|
|
5063
|
+
manufacturer_part_number?: string | undefined;
|
|
5064
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5065
|
+
display_value?: string | undefined;
|
|
5066
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5067
|
+
type: z.ZodLiteral<"source_component">;
|
|
5068
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
5069
|
+
source_component_id: z.ZodString;
|
|
5070
|
+
name: z.ZodString;
|
|
5071
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5072
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5073
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
4954
5074
|
}, {
|
|
4955
5075
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
4956
5076
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5375,7 +5495,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5375
5495
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5376
5496
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5377
5497
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5378
|
-
}>;
|
|
5498
|
+
}>; /**
|
|
5499
|
+
* @deprecated use any_circuit_element instead
|
|
5500
|
+
*/
|
|
5379
5501
|
}, "strip", z.ZodTypeAny, {
|
|
5380
5502
|
x: number;
|
|
5381
5503
|
y: number;
|
|
@@ -7390,6 +7512,35 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7390
7512
|
manufacturer_part_number?: string | undefined;
|
|
7391
7513
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7392
7514
|
display_value?: string | undefined;
|
|
7515
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7516
|
+
type: z.ZodLiteral<"source_component">;
|
|
7517
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
7518
|
+
source_component_id: z.ZodString;
|
|
7519
|
+
name: z.ZodString;
|
|
7520
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7521
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7522
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
7523
|
+
}, {
|
|
7524
|
+
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
7525
|
+
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7526
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7527
|
+
type: "source_component";
|
|
7528
|
+
ftype: "simple_potentiometer";
|
|
7529
|
+
source_component_id: string;
|
|
7530
|
+
name: string;
|
|
7531
|
+
max_resistance: number;
|
|
7532
|
+
manufacturer_part_number?: string | undefined;
|
|
7533
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7534
|
+
display_value?: string | undefined;
|
|
7535
|
+
}, {
|
|
7536
|
+
type: "source_component";
|
|
7537
|
+
ftype: "simple_potentiometer";
|
|
7538
|
+
source_component_id: string;
|
|
7539
|
+
name: string;
|
|
7540
|
+
max_resistance: string | number;
|
|
7541
|
+
manufacturer_part_number?: string | undefined;
|
|
7542
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7543
|
+
display_value?: string | undefined;
|
|
7393
7544
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
7394
7545
|
type: z.ZodLiteral<"source_component">;
|
|
7395
7546
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7691,6 +7842,35 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7691
7842
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7692
7843
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7693
7844
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7845
|
+
}, {
|
|
7846
|
+
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
7847
|
+
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7848
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7849
|
+
type: "source_component";
|
|
7850
|
+
ftype: "simple_potentiometer";
|
|
7851
|
+
source_component_id: string;
|
|
7852
|
+
name: string;
|
|
7853
|
+
max_resistance: number;
|
|
7854
|
+
manufacturer_part_number?: string | undefined;
|
|
7855
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7856
|
+
display_value?: string | undefined;
|
|
7857
|
+
}, {
|
|
7858
|
+
type: "source_component";
|
|
7859
|
+
ftype: "simple_potentiometer";
|
|
7860
|
+
source_component_id: string;
|
|
7861
|
+
name: string;
|
|
7862
|
+
max_resistance: string | number;
|
|
7863
|
+
manufacturer_part_number?: string | undefined;
|
|
7864
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7865
|
+
display_value?: string | undefined;
|
|
7866
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7867
|
+
type: z.ZodLiteral<"source_component">;
|
|
7868
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
7869
|
+
source_component_id: z.ZodString;
|
|
7870
|
+
name: z.ZodString;
|
|
7871
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7872
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7873
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
7694
7874
|
}, {
|
|
7695
7875
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
7696
7876
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -8115,7 +8295,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8115
8295
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8116
8296
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8117
8297
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8118
|
-
}>;
|
|
8298
|
+
}>; /**
|
|
8299
|
+
* @deprecated use any_circuit_element instead
|
|
8300
|
+
*/
|
|
8119
8301
|
}, "strip", z.ZodTypeAny, {
|
|
8120
8302
|
x: number;
|
|
8121
8303
|
y: number;
|
|
@@ -9796,4 +9978,4 @@ type AnySoupElement = AnyCircuitElement;
|
|
|
9796
9978
|
*/
|
|
9797
9979
|
type AnySoupElementInput = AnyCircuitElementInput;
|
|
9798
9980
|
|
|
9799
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type CadComponent, type CadComponentInput, 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 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 PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleOval, type PcbHoleOvalInput, 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 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 Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushbutton, type SourceSimplePushbuttonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, 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, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, 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, 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_diode, source_simple_ground, source_simple_inductor, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_trace, supplier_name, time, visible_layer, voltage };
|
|
9981
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type CadComponent, type CadComponentInput, 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 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 PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleOval, type PcbHoleOvalInput, 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 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 Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushbutton, type SourceSimplePushbuttonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, 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, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, 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, 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_diode, source_simple_ground, source_simple_inductor, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_trace, supplier_name, time, visible_layer, voltage };
|