@tscircuit/props 0.0.458 → 0.0.459
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +970 -321
- package/dist/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/lib/common/schematicPinDefinitions.ts +26 -8
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -14614,11 +14614,12 @@ interface PinSideDefinition {
|
|
|
14614
14614
|
pins: Array<number | string>;
|
|
14615
14615
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14616
14616
|
}
|
|
14617
|
+
type PinSideDefinitionInput = PinSideDefinition | Array<number | string>;
|
|
14617
14618
|
interface SchematicPortArrangementWithSides {
|
|
14618
|
-
leftSide?:
|
|
14619
|
-
topSide?:
|
|
14620
|
-
rightSide?:
|
|
14621
|
-
bottomSide?:
|
|
14619
|
+
leftSide?: PinSideDefinitionInput;
|
|
14620
|
+
topSide?: PinSideDefinitionInput;
|
|
14621
|
+
rightSide?: PinSideDefinitionInput;
|
|
14622
|
+
bottomSide?: PinSideDefinitionInput;
|
|
14622
14623
|
}
|
|
14623
14624
|
interface SchematicPortArrangement extends SchematicPortArrangementWithSizes, SchematicPortArrangementWithSides, SchematicPortArrangementWithPinCounts {
|
|
14624
14625
|
}
|
|
@@ -14648,7 +14649,7 @@ declare const schematicPortArrangement: z.ZodObject<{
|
|
|
14648
14649
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
14649
14650
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
14650
14651
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
14651
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
14652
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
14652
14653
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
14653
14654
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
14654
14655
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14657,8 +14658,14 @@ declare const schematicPortArrangement: z.ZodObject<{
|
|
|
14657
14658
|
}, {
|
|
14658
14659
|
pins: (string | number)[];
|
|
14659
14660
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14661
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
14662
|
+
pins: (string | number)[];
|
|
14663
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14664
|
+
}, (string | number)[] | {
|
|
14665
|
+
pins: (string | number)[];
|
|
14666
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14660
14667
|
}>>;
|
|
14661
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
14668
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
14662
14669
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
14663
14670
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
14664
14671
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14667,8 +14674,14 @@ declare const schematicPortArrangement: z.ZodObject<{
|
|
|
14667
14674
|
}, {
|
|
14668
14675
|
pins: (string | number)[];
|
|
14669
14676
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14677
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
14678
|
+
pins: (string | number)[];
|
|
14679
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14680
|
+
}, (string | number)[] | {
|
|
14681
|
+
pins: (string | number)[];
|
|
14682
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14670
14683
|
}>>;
|
|
14671
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
14684
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
14672
14685
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
14673
14686
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
14674
14687
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14677,8 +14690,14 @@ declare const schematicPortArrangement: z.ZodObject<{
|
|
|
14677
14690
|
}, {
|
|
14678
14691
|
pins: (string | number)[];
|
|
14679
14692
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14693
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
14694
|
+
pins: (string | number)[];
|
|
14695
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14696
|
+
}, (string | number)[] | {
|
|
14697
|
+
pins: (string | number)[];
|
|
14698
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14680
14699
|
}>>;
|
|
14681
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
14700
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
14682
14701
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
14683
14702
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
14684
14703
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14687,6 +14706,12 @@ declare const schematicPortArrangement: z.ZodObject<{
|
|
|
14687
14706
|
}, {
|
|
14688
14707
|
pins: (string | number)[];
|
|
14689
14708
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14709
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
14710
|
+
pins: (string | number)[];
|
|
14711
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14712
|
+
}, (string | number)[] | {
|
|
14713
|
+
pins: (string | number)[];
|
|
14714
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14690
14715
|
}>>;
|
|
14691
14716
|
}, "strip", z.ZodTypeAny, {
|
|
14692
14717
|
leftSize?: number | undefined;
|
|
@@ -14718,19 +14743,19 @@ declare const schematicPortArrangement: z.ZodObject<{
|
|
|
14718
14743
|
topSize?: number | undefined;
|
|
14719
14744
|
rightSize?: number | undefined;
|
|
14720
14745
|
bottomSize?: number | undefined;
|
|
14721
|
-
leftSide?: {
|
|
14746
|
+
leftSide?: (string | number)[] | {
|
|
14722
14747
|
pins: (string | number)[];
|
|
14723
14748
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14724
14749
|
} | undefined;
|
|
14725
|
-
topSide?: {
|
|
14750
|
+
topSide?: (string | number)[] | {
|
|
14726
14751
|
pins: (string | number)[];
|
|
14727
14752
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14728
14753
|
} | undefined;
|
|
14729
|
-
rightSide?: {
|
|
14754
|
+
rightSide?: (string | number)[] | {
|
|
14730
14755
|
pins: (string | number)[];
|
|
14731
14756
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14732
14757
|
} | undefined;
|
|
14733
|
-
bottomSide?: {
|
|
14758
|
+
bottomSide?: (string | number)[] | {
|
|
14734
14759
|
pins: (string | number)[];
|
|
14735
14760
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14736
14761
|
} | undefined;
|
|
@@ -14748,7 +14773,7 @@ declare const schematicPinArrangement: z.ZodObject<{
|
|
|
14748
14773
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
14749
14774
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
14750
14775
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
14751
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
14776
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
14752
14777
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
14753
14778
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
14754
14779
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14757,8 +14782,14 @@ declare const schematicPinArrangement: z.ZodObject<{
|
|
|
14757
14782
|
}, {
|
|
14758
14783
|
pins: (string | number)[];
|
|
14759
14784
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14785
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
14786
|
+
pins: (string | number)[];
|
|
14787
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14788
|
+
}, (string | number)[] | {
|
|
14789
|
+
pins: (string | number)[];
|
|
14790
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14760
14791
|
}>>;
|
|
14761
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
14792
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
14762
14793
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
14763
14794
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
14764
14795
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14767,8 +14798,14 @@ declare const schematicPinArrangement: z.ZodObject<{
|
|
|
14767
14798
|
}, {
|
|
14768
14799
|
pins: (string | number)[];
|
|
14769
14800
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14801
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
14802
|
+
pins: (string | number)[];
|
|
14803
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14804
|
+
}, (string | number)[] | {
|
|
14805
|
+
pins: (string | number)[];
|
|
14806
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14770
14807
|
}>>;
|
|
14771
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
14808
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
14772
14809
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
14773
14810
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
14774
14811
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14777,8 +14814,14 @@ declare const schematicPinArrangement: z.ZodObject<{
|
|
|
14777
14814
|
}, {
|
|
14778
14815
|
pins: (string | number)[];
|
|
14779
14816
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14817
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
14818
|
+
pins: (string | number)[];
|
|
14819
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14820
|
+
}, (string | number)[] | {
|
|
14821
|
+
pins: (string | number)[];
|
|
14822
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14780
14823
|
}>>;
|
|
14781
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
14824
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
14782
14825
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
14783
14826
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
14784
14827
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14787,6 +14830,12 @@ declare const schematicPinArrangement: z.ZodObject<{
|
|
|
14787
14830
|
}, {
|
|
14788
14831
|
pins: (string | number)[];
|
|
14789
14832
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14833
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
14834
|
+
pins: (string | number)[];
|
|
14835
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14836
|
+
}, (string | number)[] | {
|
|
14837
|
+
pins: (string | number)[];
|
|
14838
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14790
14839
|
}>>;
|
|
14791
14840
|
}, "strip", z.ZodTypeAny, {
|
|
14792
14841
|
leftSize?: number | undefined;
|
|
@@ -14818,19 +14867,19 @@ declare const schematicPinArrangement: z.ZodObject<{
|
|
|
14818
14867
|
topSize?: number | undefined;
|
|
14819
14868
|
rightSize?: number | undefined;
|
|
14820
14869
|
bottomSize?: number | undefined;
|
|
14821
|
-
leftSide?: {
|
|
14870
|
+
leftSide?: (string | number)[] | {
|
|
14822
14871
|
pins: (string | number)[];
|
|
14823
14872
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14824
14873
|
} | undefined;
|
|
14825
|
-
topSide?: {
|
|
14874
|
+
topSide?: (string | number)[] | {
|
|
14826
14875
|
pins: (string | number)[];
|
|
14827
14876
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14828
14877
|
} | undefined;
|
|
14829
|
-
rightSide?: {
|
|
14878
|
+
rightSide?: (string | number)[] | {
|
|
14830
14879
|
pins: (string | number)[];
|
|
14831
14880
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14832
14881
|
} | undefined;
|
|
14833
|
-
bottomSide?: {
|
|
14882
|
+
bottomSide?: (string | number)[] | {
|
|
14834
14883
|
pins: (string | number)[];
|
|
14835
14884
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
14836
14885
|
} | undefined;
|
|
@@ -16671,7 +16720,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
16671
16720
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
16672
16721
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
16673
16722
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
16674
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
16723
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
16675
16724
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
16676
16725
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
16677
16726
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16680,8 +16729,14 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
16680
16729
|
}, {
|
|
16681
16730
|
pins: (string | number)[];
|
|
16682
16731
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16732
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
16733
|
+
pins: (string | number)[];
|
|
16734
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16735
|
+
}, (string | number)[] | {
|
|
16736
|
+
pins: (string | number)[];
|
|
16737
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16683
16738
|
}>>;
|
|
16684
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
16739
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
16685
16740
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
16686
16741
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
16687
16742
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16690,8 +16745,14 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
16690
16745
|
}, {
|
|
16691
16746
|
pins: (string | number)[];
|
|
16692
16747
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16748
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
16749
|
+
pins: (string | number)[];
|
|
16750
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16751
|
+
}, (string | number)[] | {
|
|
16752
|
+
pins: (string | number)[];
|
|
16753
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16693
16754
|
}>>;
|
|
16694
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
16755
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
16695
16756
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
16696
16757
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
16697
16758
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16700,8 +16761,14 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
16700
16761
|
}, {
|
|
16701
16762
|
pins: (string | number)[];
|
|
16702
16763
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16764
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
16765
|
+
pins: (string | number)[];
|
|
16766
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16767
|
+
}, (string | number)[] | {
|
|
16768
|
+
pins: (string | number)[];
|
|
16769
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16703
16770
|
}>>;
|
|
16704
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
16771
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
16705
16772
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
16706
16773
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
16707
16774
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16710,6 +16777,12 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
16710
16777
|
}, {
|
|
16711
16778
|
pins: (string | number)[];
|
|
16712
16779
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16780
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
16781
|
+
pins: (string | number)[];
|
|
16782
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16783
|
+
}, (string | number)[] | {
|
|
16784
|
+
pins: (string | number)[];
|
|
16785
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16713
16786
|
}>>;
|
|
16714
16787
|
}, "strip", z.ZodTypeAny, {
|
|
16715
16788
|
leftSize?: number | undefined;
|
|
@@ -16741,19 +16814,19 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
16741
16814
|
topSize?: number | undefined;
|
|
16742
16815
|
rightSize?: number | undefined;
|
|
16743
16816
|
bottomSize?: number | undefined;
|
|
16744
|
-
leftSide?: {
|
|
16817
|
+
leftSide?: (string | number)[] | {
|
|
16745
16818
|
pins: (string | number)[];
|
|
16746
16819
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16747
16820
|
} | undefined;
|
|
16748
|
-
topSide?: {
|
|
16821
|
+
topSide?: (string | number)[] | {
|
|
16749
16822
|
pins: (string | number)[];
|
|
16750
16823
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16751
16824
|
} | undefined;
|
|
16752
|
-
rightSide?: {
|
|
16825
|
+
rightSide?: (string | number)[] | {
|
|
16753
16826
|
pins: (string | number)[];
|
|
16754
16827
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16755
16828
|
} | undefined;
|
|
16756
|
-
bottomSide?: {
|
|
16829
|
+
bottomSide?: (string | number)[] | {
|
|
16757
16830
|
pins: (string | number)[];
|
|
16758
16831
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16759
16832
|
} | undefined;
|
|
@@ -17138,19 +17211,19 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
17138
17211
|
topSize?: number | undefined;
|
|
17139
17212
|
rightSize?: number | undefined;
|
|
17140
17213
|
bottomSize?: number | undefined;
|
|
17141
|
-
leftSide?: {
|
|
17214
|
+
leftSide?: (string | number)[] | {
|
|
17142
17215
|
pins: (string | number)[];
|
|
17143
17216
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17144
17217
|
} | undefined;
|
|
17145
|
-
topSide?: {
|
|
17218
|
+
topSide?: (string | number)[] | {
|
|
17146
17219
|
pins: (string | number)[];
|
|
17147
17220
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17148
17221
|
} | undefined;
|
|
17149
|
-
rightSide?: {
|
|
17222
|
+
rightSide?: (string | number)[] | {
|
|
17150
17223
|
pins: (string | number)[];
|
|
17151
17224
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17152
17225
|
} | undefined;
|
|
17153
|
-
bottomSide?: {
|
|
17226
|
+
bottomSide?: (string | number)[] | {
|
|
17154
17227
|
pins: (string | number)[];
|
|
17155
17228
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17156
17229
|
} | undefined;
|
|
@@ -17714,7 +17787,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
17714
17787
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
17715
17788
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
17716
17789
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
17717
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
17790
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
17718
17791
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
17719
17792
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
17720
17793
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17723,8 +17796,14 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
17723
17796
|
}, {
|
|
17724
17797
|
pins: (string | number)[];
|
|
17725
17798
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17799
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17800
|
+
pins: (string | number)[];
|
|
17801
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17802
|
+
}, (string | number)[] | {
|
|
17803
|
+
pins: (string | number)[];
|
|
17804
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17726
17805
|
}>>;
|
|
17727
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
17806
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
17728
17807
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
17729
17808
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
17730
17809
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17733,8 +17812,14 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
17733
17812
|
}, {
|
|
17734
17813
|
pins: (string | number)[];
|
|
17735
17814
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17815
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17816
|
+
pins: (string | number)[];
|
|
17817
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17818
|
+
}, (string | number)[] | {
|
|
17819
|
+
pins: (string | number)[];
|
|
17820
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17736
17821
|
}>>;
|
|
17737
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
17822
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
17738
17823
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
17739
17824
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
17740
17825
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17743,8 +17828,14 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
17743
17828
|
}, {
|
|
17744
17829
|
pins: (string | number)[];
|
|
17745
17830
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17831
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17832
|
+
pins: (string | number)[];
|
|
17833
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17834
|
+
}, (string | number)[] | {
|
|
17835
|
+
pins: (string | number)[];
|
|
17836
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17746
17837
|
}>>;
|
|
17747
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
17838
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
17748
17839
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
17749
17840
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
17750
17841
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17753,6 +17844,12 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
17753
17844
|
}, {
|
|
17754
17845
|
pins: (string | number)[];
|
|
17755
17846
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17847
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17848
|
+
pins: (string | number)[];
|
|
17849
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17850
|
+
}, (string | number)[] | {
|
|
17851
|
+
pins: (string | number)[];
|
|
17852
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17756
17853
|
}>>;
|
|
17757
17854
|
}, "strip", z.ZodTypeAny, {
|
|
17758
17855
|
leftSize?: number | undefined;
|
|
@@ -17784,19 +17881,19 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
17784
17881
|
topSize?: number | undefined;
|
|
17785
17882
|
rightSize?: number | undefined;
|
|
17786
17883
|
bottomSize?: number | undefined;
|
|
17787
|
-
leftSide?: {
|
|
17884
|
+
leftSide?: (string | number)[] | {
|
|
17788
17885
|
pins: (string | number)[];
|
|
17789
17886
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17790
17887
|
} | undefined;
|
|
17791
|
-
topSide?: {
|
|
17888
|
+
topSide?: (string | number)[] | {
|
|
17792
17889
|
pins: (string | number)[];
|
|
17793
17890
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17794
17891
|
} | undefined;
|
|
17795
|
-
rightSide?: {
|
|
17892
|
+
rightSide?: (string | number)[] | {
|
|
17796
17893
|
pins: (string | number)[];
|
|
17797
17894
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17798
17895
|
} | undefined;
|
|
17799
|
-
bottomSide?: {
|
|
17896
|
+
bottomSide?: (string | number)[] | {
|
|
17800
17897
|
pins: (string | number)[];
|
|
17801
17898
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17802
17899
|
} | undefined;
|
|
@@ -18428,19 +18525,19 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
18428
18525
|
topSize?: number | undefined;
|
|
18429
18526
|
rightSize?: number | undefined;
|
|
18430
18527
|
bottomSize?: number | undefined;
|
|
18431
|
-
leftSide?: {
|
|
18528
|
+
leftSide?: (string | number)[] | {
|
|
18432
18529
|
pins: (string | number)[];
|
|
18433
18530
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18434
18531
|
} | undefined;
|
|
18435
|
-
topSide?: {
|
|
18532
|
+
topSide?: (string | number)[] | {
|
|
18436
18533
|
pins: (string | number)[];
|
|
18437
18534
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18438
18535
|
} | undefined;
|
|
18439
|
-
rightSide?: {
|
|
18536
|
+
rightSide?: (string | number)[] | {
|
|
18440
18537
|
pins: (string | number)[];
|
|
18441
18538
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18442
18539
|
} | undefined;
|
|
18443
|
-
bottomSide?: {
|
|
18540
|
+
bottomSide?: (string | number)[] | {
|
|
18444
18541
|
pins: (string | number)[];
|
|
18445
18542
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18446
18543
|
} | undefined;
|
|
@@ -19054,7 +19151,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19054
19151
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
19055
19152
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
19056
19153
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
19057
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
19154
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
19058
19155
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
19059
19156
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
19060
19157
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19063,8 +19160,14 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19063
19160
|
}, {
|
|
19064
19161
|
pins: (string | number)[];
|
|
19065
19162
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19163
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
19164
|
+
pins: (string | number)[];
|
|
19165
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19166
|
+
}, (string | number)[] | {
|
|
19167
|
+
pins: (string | number)[];
|
|
19168
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19066
19169
|
}>>;
|
|
19067
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
19170
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
19068
19171
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
19069
19172
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
19070
19173
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19073,8 +19176,14 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19073
19176
|
}, {
|
|
19074
19177
|
pins: (string | number)[];
|
|
19075
19178
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19179
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
19180
|
+
pins: (string | number)[];
|
|
19181
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19182
|
+
}, (string | number)[] | {
|
|
19183
|
+
pins: (string | number)[];
|
|
19184
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19076
19185
|
}>>;
|
|
19077
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
19186
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
19078
19187
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
19079
19188
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
19080
19189
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19083,8 +19192,14 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19083
19192
|
}, {
|
|
19084
19193
|
pins: (string | number)[];
|
|
19085
19194
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19195
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
19196
|
+
pins: (string | number)[];
|
|
19197
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19198
|
+
}, (string | number)[] | {
|
|
19199
|
+
pins: (string | number)[];
|
|
19200
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19086
19201
|
}>>;
|
|
19087
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
19202
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
19088
19203
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
19089
19204
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
19090
19205
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19093,6 +19208,12 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19093
19208
|
}, {
|
|
19094
19209
|
pins: (string | number)[];
|
|
19095
19210
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19211
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
19212
|
+
pins: (string | number)[];
|
|
19213
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19214
|
+
}, (string | number)[] | {
|
|
19215
|
+
pins: (string | number)[];
|
|
19216
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19096
19217
|
}>>;
|
|
19097
19218
|
}, "strip", z.ZodTypeAny, {
|
|
19098
19219
|
leftSize?: number | undefined;
|
|
@@ -19124,19 +19245,19 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19124
19245
|
topSize?: number | undefined;
|
|
19125
19246
|
rightSize?: number | undefined;
|
|
19126
19247
|
bottomSize?: number | undefined;
|
|
19127
|
-
leftSide?: {
|
|
19248
|
+
leftSide?: (string | number)[] | {
|
|
19128
19249
|
pins: (string | number)[];
|
|
19129
19250
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19130
19251
|
} | undefined;
|
|
19131
|
-
topSide?: {
|
|
19252
|
+
topSide?: (string | number)[] | {
|
|
19132
19253
|
pins: (string | number)[];
|
|
19133
19254
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19134
19255
|
} | undefined;
|
|
19135
|
-
rightSide?: {
|
|
19256
|
+
rightSide?: (string | number)[] | {
|
|
19136
19257
|
pins: (string | number)[];
|
|
19137
19258
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19138
19259
|
} | undefined;
|
|
19139
|
-
bottomSide?: {
|
|
19260
|
+
bottomSide?: (string | number)[] | {
|
|
19140
19261
|
pins: (string | number)[];
|
|
19141
19262
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19142
19263
|
} | undefined;
|
|
@@ -19772,19 +19893,19 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19772
19893
|
topSize?: number | undefined;
|
|
19773
19894
|
rightSize?: number | undefined;
|
|
19774
19895
|
bottomSize?: number | undefined;
|
|
19775
|
-
leftSide?: {
|
|
19896
|
+
leftSide?: (string | number)[] | {
|
|
19776
19897
|
pins: (string | number)[];
|
|
19777
19898
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19778
19899
|
} | undefined;
|
|
19779
|
-
topSide?: {
|
|
19900
|
+
topSide?: (string | number)[] | {
|
|
19780
19901
|
pins: (string | number)[];
|
|
19781
19902
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19782
19903
|
} | undefined;
|
|
19783
|
-
rightSide?: {
|
|
19904
|
+
rightSide?: (string | number)[] | {
|
|
19784
19905
|
pins: (string | number)[];
|
|
19785
19906
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19786
19907
|
} | undefined;
|
|
19787
|
-
bottomSide?: {
|
|
19908
|
+
bottomSide?: (string | number)[] | {
|
|
19788
19909
|
pins: (string | number)[];
|
|
19789
19910
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
19790
19911
|
} | undefined;
|
|
@@ -20403,7 +20524,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20403
20524
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
20404
20525
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
20405
20526
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
20406
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
20527
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
20407
20528
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
20408
20529
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
20409
20530
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20412,8 +20533,14 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20412
20533
|
}, {
|
|
20413
20534
|
pins: (string | number)[];
|
|
20414
20535
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20536
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
20537
|
+
pins: (string | number)[];
|
|
20538
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20539
|
+
}, (string | number)[] | {
|
|
20540
|
+
pins: (string | number)[];
|
|
20541
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20415
20542
|
}>>;
|
|
20416
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
20543
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
20417
20544
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
20418
20545
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
20419
20546
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20422,8 +20549,14 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20422
20549
|
}, {
|
|
20423
20550
|
pins: (string | number)[];
|
|
20424
20551
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20552
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
20553
|
+
pins: (string | number)[];
|
|
20554
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20555
|
+
}, (string | number)[] | {
|
|
20556
|
+
pins: (string | number)[];
|
|
20557
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20425
20558
|
}>>;
|
|
20426
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
20559
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
20427
20560
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
20428
20561
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
20429
20562
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20432,8 +20565,14 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20432
20565
|
}, {
|
|
20433
20566
|
pins: (string | number)[];
|
|
20434
20567
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20568
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
20569
|
+
pins: (string | number)[];
|
|
20570
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20571
|
+
}, (string | number)[] | {
|
|
20572
|
+
pins: (string | number)[];
|
|
20573
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20435
20574
|
}>>;
|
|
20436
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
20575
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
20437
20576
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
20438
20577
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
20439
20578
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20442,6 +20581,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20442
20581
|
}, {
|
|
20443
20582
|
pins: (string | number)[];
|
|
20444
20583
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20584
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
20585
|
+
pins: (string | number)[];
|
|
20586
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20587
|
+
}, (string | number)[] | {
|
|
20588
|
+
pins: (string | number)[];
|
|
20589
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20445
20590
|
}>>;
|
|
20446
20591
|
}, "strip", z.ZodTypeAny, {
|
|
20447
20592
|
leftSize?: number | undefined;
|
|
@@ -20473,19 +20618,19 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20473
20618
|
topSize?: number | undefined;
|
|
20474
20619
|
rightSize?: number | undefined;
|
|
20475
20620
|
bottomSize?: number | undefined;
|
|
20476
|
-
leftSide?: {
|
|
20621
|
+
leftSide?: (string | number)[] | {
|
|
20477
20622
|
pins: (string | number)[];
|
|
20478
20623
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20479
20624
|
} | undefined;
|
|
20480
|
-
topSide?: {
|
|
20625
|
+
topSide?: (string | number)[] | {
|
|
20481
20626
|
pins: (string | number)[];
|
|
20482
20627
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20483
20628
|
} | undefined;
|
|
20484
|
-
rightSide?: {
|
|
20629
|
+
rightSide?: (string | number)[] | {
|
|
20485
20630
|
pins: (string | number)[];
|
|
20486
20631
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20487
20632
|
} | undefined;
|
|
20488
|
-
bottomSide?: {
|
|
20633
|
+
bottomSide?: (string | number)[] | {
|
|
20489
20634
|
pins: (string | number)[];
|
|
20490
20635
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20491
20636
|
} | undefined;
|
|
@@ -20873,19 +21018,19 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20873
21018
|
topSize?: number | undefined;
|
|
20874
21019
|
rightSize?: number | undefined;
|
|
20875
21020
|
bottomSize?: number | undefined;
|
|
20876
|
-
leftSide?: {
|
|
21021
|
+
leftSide?: (string | number)[] | {
|
|
20877
21022
|
pins: (string | number)[];
|
|
20878
21023
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20879
21024
|
} | undefined;
|
|
20880
|
-
topSide?: {
|
|
21025
|
+
topSide?: (string | number)[] | {
|
|
20881
21026
|
pins: (string | number)[];
|
|
20882
21027
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20883
21028
|
} | undefined;
|
|
20884
|
-
rightSide?: {
|
|
21029
|
+
rightSide?: (string | number)[] | {
|
|
20885
21030
|
pins: (string | number)[];
|
|
20886
21031
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20887
21032
|
} | undefined;
|
|
20888
|
-
bottomSide?: {
|
|
21033
|
+
bottomSide?: (string | number)[] | {
|
|
20889
21034
|
pins: (string | number)[];
|
|
20890
21035
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
20891
21036
|
} | undefined;
|
|
@@ -21448,7 +21593,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21448
21593
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
21449
21594
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
21450
21595
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
21451
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
21596
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
21452
21597
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
21453
21598
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
21454
21599
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21457,8 +21602,14 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21457
21602
|
}, {
|
|
21458
21603
|
pins: (string | number)[];
|
|
21459
21604
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21605
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
21606
|
+
pins: (string | number)[];
|
|
21607
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21608
|
+
}, (string | number)[] | {
|
|
21609
|
+
pins: (string | number)[];
|
|
21610
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21460
21611
|
}>>;
|
|
21461
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
21612
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
21462
21613
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
21463
21614
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
21464
21615
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21467,8 +21618,14 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21467
21618
|
}, {
|
|
21468
21619
|
pins: (string | number)[];
|
|
21469
21620
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21621
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
21622
|
+
pins: (string | number)[];
|
|
21623
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21624
|
+
}, (string | number)[] | {
|
|
21625
|
+
pins: (string | number)[];
|
|
21626
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21470
21627
|
}>>;
|
|
21471
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
21628
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
21472
21629
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
21473
21630
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
21474
21631
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21477,8 +21634,14 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21477
21634
|
}, {
|
|
21478
21635
|
pins: (string | number)[];
|
|
21479
21636
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21637
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
21638
|
+
pins: (string | number)[];
|
|
21639
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21640
|
+
}, (string | number)[] | {
|
|
21641
|
+
pins: (string | number)[];
|
|
21642
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21480
21643
|
}>>;
|
|
21481
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
21644
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
21482
21645
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
21483
21646
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
21484
21647
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21487,6 +21650,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21487
21650
|
}, {
|
|
21488
21651
|
pins: (string | number)[];
|
|
21489
21652
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21653
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
21654
|
+
pins: (string | number)[];
|
|
21655
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21656
|
+
}, (string | number)[] | {
|
|
21657
|
+
pins: (string | number)[];
|
|
21658
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21490
21659
|
}>>;
|
|
21491
21660
|
}, "strip", z.ZodTypeAny, {
|
|
21492
21661
|
leftSize?: number | undefined;
|
|
@@ -21518,19 +21687,19 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21518
21687
|
topSize?: number | undefined;
|
|
21519
21688
|
rightSize?: number | undefined;
|
|
21520
21689
|
bottomSize?: number | undefined;
|
|
21521
|
-
leftSide?: {
|
|
21690
|
+
leftSide?: (string | number)[] | {
|
|
21522
21691
|
pins: (string | number)[];
|
|
21523
21692
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21524
21693
|
} | undefined;
|
|
21525
|
-
topSide?: {
|
|
21694
|
+
topSide?: (string | number)[] | {
|
|
21526
21695
|
pins: (string | number)[];
|
|
21527
21696
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21528
21697
|
} | undefined;
|
|
21529
|
-
rightSide?: {
|
|
21698
|
+
rightSide?: (string | number)[] | {
|
|
21530
21699
|
pins: (string | number)[];
|
|
21531
21700
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21532
21701
|
} | undefined;
|
|
21533
|
-
bottomSide?: {
|
|
21702
|
+
bottomSide?: (string | number)[] | {
|
|
21534
21703
|
pins: (string | number)[];
|
|
21535
21704
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
21536
21705
|
} | undefined;
|
|
@@ -22166,19 +22335,19 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22166
22335
|
topSize?: number | undefined;
|
|
22167
22336
|
rightSize?: number | undefined;
|
|
22168
22337
|
bottomSize?: number | undefined;
|
|
22169
|
-
leftSide?: {
|
|
22338
|
+
leftSide?: (string | number)[] | {
|
|
22170
22339
|
pins: (string | number)[];
|
|
22171
22340
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22172
22341
|
} | undefined;
|
|
22173
|
-
topSide?: {
|
|
22342
|
+
topSide?: (string | number)[] | {
|
|
22174
22343
|
pins: (string | number)[];
|
|
22175
22344
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22176
22345
|
} | undefined;
|
|
22177
|
-
rightSide?: {
|
|
22346
|
+
rightSide?: (string | number)[] | {
|
|
22178
22347
|
pins: (string | number)[];
|
|
22179
22348
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22180
22349
|
} | undefined;
|
|
22181
|
-
bottomSide?: {
|
|
22350
|
+
bottomSide?: (string | number)[] | {
|
|
22182
22351
|
pins: (string | number)[];
|
|
22183
22352
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22184
22353
|
} | undefined;
|
|
@@ -22823,7 +22992,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
22823
22992
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
22824
22993
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
22825
22994
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
22826
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
22995
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
22827
22996
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
22828
22997
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
22829
22998
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22832,8 +23001,14 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
22832
23001
|
}, {
|
|
22833
23002
|
pins: (string | number)[];
|
|
22834
23003
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23004
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
23005
|
+
pins: (string | number)[];
|
|
23006
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23007
|
+
}, (string | number)[] | {
|
|
23008
|
+
pins: (string | number)[];
|
|
23009
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22835
23010
|
}>>;
|
|
22836
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
23011
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
22837
23012
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
22838
23013
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
22839
23014
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22842,8 +23017,14 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
22842
23017
|
}, {
|
|
22843
23018
|
pins: (string | number)[];
|
|
22844
23019
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23020
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
23021
|
+
pins: (string | number)[];
|
|
23022
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23023
|
+
}, (string | number)[] | {
|
|
23024
|
+
pins: (string | number)[];
|
|
23025
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22845
23026
|
}>>;
|
|
22846
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
23027
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
22847
23028
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
22848
23029
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
22849
23030
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22852,8 +23033,14 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
22852
23033
|
}, {
|
|
22853
23034
|
pins: (string | number)[];
|
|
22854
23035
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23036
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
23037
|
+
pins: (string | number)[];
|
|
23038
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23039
|
+
}, (string | number)[] | {
|
|
23040
|
+
pins: (string | number)[];
|
|
23041
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22855
23042
|
}>>;
|
|
22856
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
23043
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
22857
23044
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
22858
23045
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
22859
23046
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22862,6 +23049,12 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
22862
23049
|
}, {
|
|
22863
23050
|
pins: (string | number)[];
|
|
22864
23051
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23052
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
23053
|
+
pins: (string | number)[];
|
|
23054
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23055
|
+
}, (string | number)[] | {
|
|
23056
|
+
pins: (string | number)[];
|
|
23057
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22865
23058
|
}>>;
|
|
22866
23059
|
}, "strip", z.ZodTypeAny, {
|
|
22867
23060
|
leftSize?: number | undefined;
|
|
@@ -22893,19 +23086,19 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
22893
23086
|
topSize?: number | undefined;
|
|
22894
23087
|
rightSize?: number | undefined;
|
|
22895
23088
|
bottomSize?: number | undefined;
|
|
22896
|
-
leftSide?: {
|
|
23089
|
+
leftSide?: (string | number)[] | {
|
|
22897
23090
|
pins: (string | number)[];
|
|
22898
23091
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22899
23092
|
} | undefined;
|
|
22900
|
-
topSide?: {
|
|
23093
|
+
topSide?: (string | number)[] | {
|
|
22901
23094
|
pins: (string | number)[];
|
|
22902
23095
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22903
23096
|
} | undefined;
|
|
22904
|
-
rightSide?: {
|
|
23097
|
+
rightSide?: (string | number)[] | {
|
|
22905
23098
|
pins: (string | number)[];
|
|
22906
23099
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22907
23100
|
} | undefined;
|
|
22908
|
-
bottomSide?: {
|
|
23101
|
+
bottomSide?: (string | number)[] | {
|
|
22909
23102
|
pins: (string | number)[];
|
|
22910
23103
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
22911
23104
|
} | undefined;
|
|
@@ -23582,19 +23775,19 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
23582
23775
|
topSize?: number | undefined;
|
|
23583
23776
|
rightSize?: number | undefined;
|
|
23584
23777
|
bottomSize?: number | undefined;
|
|
23585
|
-
leftSide?: {
|
|
23778
|
+
leftSide?: (string | number)[] | {
|
|
23586
23779
|
pins: (string | number)[];
|
|
23587
23780
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23588
23781
|
} | undefined;
|
|
23589
|
-
topSide?: {
|
|
23782
|
+
topSide?: (string | number)[] | {
|
|
23590
23783
|
pins: (string | number)[];
|
|
23591
23784
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23592
23785
|
} | undefined;
|
|
23593
|
-
rightSide?: {
|
|
23786
|
+
rightSide?: (string | number)[] | {
|
|
23594
23787
|
pins: (string | number)[];
|
|
23595
23788
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23596
23789
|
} | undefined;
|
|
23597
|
-
bottomSide?: {
|
|
23790
|
+
bottomSide?: (string | number)[] | {
|
|
23598
23791
|
pins: (string | number)[];
|
|
23599
23792
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
23600
23793
|
} | undefined;
|
|
@@ -24258,7 +24451,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24258
24451
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
24259
24452
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
24260
24453
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
24261
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
24454
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
24262
24455
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
24263
24456
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
24264
24457
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24267,8 +24460,14 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24267
24460
|
}, {
|
|
24268
24461
|
pins: (string | number)[];
|
|
24269
24462
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24463
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
24464
|
+
pins: (string | number)[];
|
|
24465
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24466
|
+
}, (string | number)[] | {
|
|
24467
|
+
pins: (string | number)[];
|
|
24468
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24270
24469
|
}>>;
|
|
24271
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
24470
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
24272
24471
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
24273
24472
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
24274
24473
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24277,8 +24476,14 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24277
24476
|
}, {
|
|
24278
24477
|
pins: (string | number)[];
|
|
24279
24478
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24479
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
24480
|
+
pins: (string | number)[];
|
|
24481
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24482
|
+
}, (string | number)[] | {
|
|
24483
|
+
pins: (string | number)[];
|
|
24484
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24280
24485
|
}>>;
|
|
24281
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
24486
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
24282
24487
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
24283
24488
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
24284
24489
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24287,8 +24492,14 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24287
24492
|
}, {
|
|
24288
24493
|
pins: (string | number)[];
|
|
24289
24494
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24495
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
24496
|
+
pins: (string | number)[];
|
|
24497
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24498
|
+
}, (string | number)[] | {
|
|
24499
|
+
pins: (string | number)[];
|
|
24500
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24290
24501
|
}>>;
|
|
24291
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
24502
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
24292
24503
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
24293
24504
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
24294
24505
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24297,6 +24508,12 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24297
24508
|
}, {
|
|
24298
24509
|
pins: (string | number)[];
|
|
24299
24510
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24511
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
24512
|
+
pins: (string | number)[];
|
|
24513
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24514
|
+
}, (string | number)[] | {
|
|
24515
|
+
pins: (string | number)[];
|
|
24516
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24300
24517
|
}>>;
|
|
24301
24518
|
}, "strip", z.ZodTypeAny, {
|
|
24302
24519
|
leftSize?: number | undefined;
|
|
@@ -24328,19 +24545,19 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24328
24545
|
topSize?: number | undefined;
|
|
24329
24546
|
rightSize?: number | undefined;
|
|
24330
24547
|
bottomSize?: number | undefined;
|
|
24331
|
-
leftSide?: {
|
|
24548
|
+
leftSide?: (string | number)[] | {
|
|
24332
24549
|
pins: (string | number)[];
|
|
24333
24550
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24334
24551
|
} | undefined;
|
|
24335
|
-
topSide?: {
|
|
24552
|
+
topSide?: (string | number)[] | {
|
|
24336
24553
|
pins: (string | number)[];
|
|
24337
24554
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24338
24555
|
} | undefined;
|
|
24339
|
-
rightSide?: {
|
|
24556
|
+
rightSide?: (string | number)[] | {
|
|
24340
24557
|
pins: (string | number)[];
|
|
24341
24558
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24342
24559
|
} | undefined;
|
|
24343
|
-
bottomSide?: {
|
|
24560
|
+
bottomSide?: (string | number)[] | {
|
|
24344
24561
|
pins: (string | number)[];
|
|
24345
24562
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24346
24563
|
} | undefined;
|
|
@@ -24763,19 +24980,19 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24763
24980
|
topSize?: number | undefined;
|
|
24764
24981
|
rightSize?: number | undefined;
|
|
24765
24982
|
bottomSize?: number | undefined;
|
|
24766
|
-
leftSide?: {
|
|
24983
|
+
leftSide?: (string | number)[] | {
|
|
24767
24984
|
pins: (string | number)[];
|
|
24768
24985
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24769
24986
|
} | undefined;
|
|
24770
|
-
topSide?: {
|
|
24987
|
+
topSide?: (string | number)[] | {
|
|
24771
24988
|
pins: (string | number)[];
|
|
24772
24989
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24773
24990
|
} | undefined;
|
|
24774
|
-
rightSide?: {
|
|
24991
|
+
rightSide?: (string | number)[] | {
|
|
24775
24992
|
pins: (string | number)[];
|
|
24776
24993
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24777
24994
|
} | undefined;
|
|
24778
|
-
bottomSide?: {
|
|
24995
|
+
bottomSide?: (string | number)[] | {
|
|
24779
24996
|
pins: (string | number)[];
|
|
24780
24997
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
24781
24998
|
} | undefined;
|
|
@@ -25361,7 +25578,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25361
25578
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
25362
25579
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
25363
25580
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
25364
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
25581
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
25365
25582
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
25366
25583
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
25367
25584
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -25370,8 +25587,14 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25370
25587
|
}, {
|
|
25371
25588
|
pins: (string | number)[];
|
|
25372
25589
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25590
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
25591
|
+
pins: (string | number)[];
|
|
25592
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25593
|
+
}, (string | number)[] | {
|
|
25594
|
+
pins: (string | number)[];
|
|
25595
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25373
25596
|
}>>;
|
|
25374
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
25597
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
25375
25598
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
25376
25599
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
25377
25600
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -25380,8 +25603,14 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25380
25603
|
}, {
|
|
25381
25604
|
pins: (string | number)[];
|
|
25382
25605
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25606
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
25607
|
+
pins: (string | number)[];
|
|
25608
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25609
|
+
}, (string | number)[] | {
|
|
25610
|
+
pins: (string | number)[];
|
|
25611
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25383
25612
|
}>>;
|
|
25384
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
25613
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
25385
25614
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
25386
25615
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
25387
25616
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -25390,8 +25619,14 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25390
25619
|
}, {
|
|
25391
25620
|
pins: (string | number)[];
|
|
25392
25621
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25622
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
25623
|
+
pins: (string | number)[];
|
|
25624
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25625
|
+
}, (string | number)[] | {
|
|
25626
|
+
pins: (string | number)[];
|
|
25627
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25393
25628
|
}>>;
|
|
25394
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
25629
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
25395
25630
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
25396
25631
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
25397
25632
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -25400,6 +25635,12 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25400
25635
|
}, {
|
|
25401
25636
|
pins: (string | number)[];
|
|
25402
25637
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25638
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
25639
|
+
pins: (string | number)[];
|
|
25640
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25641
|
+
}, (string | number)[] | {
|
|
25642
|
+
pins: (string | number)[];
|
|
25643
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25403
25644
|
}>>;
|
|
25404
25645
|
}, "strip", z.ZodTypeAny, {
|
|
25405
25646
|
leftSize?: number | undefined;
|
|
@@ -25431,19 +25672,19 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25431
25672
|
topSize?: number | undefined;
|
|
25432
25673
|
rightSize?: number | undefined;
|
|
25433
25674
|
bottomSize?: number | undefined;
|
|
25434
|
-
leftSide?: {
|
|
25675
|
+
leftSide?: (string | number)[] | {
|
|
25435
25676
|
pins: (string | number)[];
|
|
25436
25677
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25437
25678
|
} | undefined;
|
|
25438
|
-
topSide?: {
|
|
25679
|
+
topSide?: (string | number)[] | {
|
|
25439
25680
|
pins: (string | number)[];
|
|
25440
25681
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25441
25682
|
} | undefined;
|
|
25442
|
-
rightSide?: {
|
|
25683
|
+
rightSide?: (string | number)[] | {
|
|
25443
25684
|
pins: (string | number)[];
|
|
25444
25685
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25445
25686
|
} | undefined;
|
|
25446
|
-
bottomSide?: {
|
|
25687
|
+
bottomSide?: (string | number)[] | {
|
|
25447
25688
|
pins: (string | number)[];
|
|
25448
25689
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25449
25690
|
} | undefined;
|
|
@@ -25866,19 +26107,19 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25866
26107
|
topSize?: number | undefined;
|
|
25867
26108
|
rightSize?: number | undefined;
|
|
25868
26109
|
bottomSize?: number | undefined;
|
|
25869
|
-
leftSide?: {
|
|
26110
|
+
leftSide?: (string | number)[] | {
|
|
25870
26111
|
pins: (string | number)[];
|
|
25871
26112
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25872
26113
|
} | undefined;
|
|
25873
|
-
topSide?: {
|
|
26114
|
+
topSide?: (string | number)[] | {
|
|
25874
26115
|
pins: (string | number)[];
|
|
25875
26116
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25876
26117
|
} | undefined;
|
|
25877
|
-
rightSide?: {
|
|
26118
|
+
rightSide?: (string | number)[] | {
|
|
25878
26119
|
pins: (string | number)[];
|
|
25879
26120
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25880
26121
|
} | undefined;
|
|
25881
|
-
bottomSide?: {
|
|
26122
|
+
bottomSide?: (string | number)[] | {
|
|
25882
26123
|
pins: (string | number)[];
|
|
25883
26124
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
25884
26125
|
} | undefined;
|
|
@@ -26459,7 +26700,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
26459
26700
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
26460
26701
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
26461
26702
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
26462
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
26703
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
26463
26704
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
26464
26705
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
26465
26706
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26468,8 +26709,14 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
26468
26709
|
}, {
|
|
26469
26710
|
pins: (string | number)[];
|
|
26470
26711
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26712
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
26713
|
+
pins: (string | number)[];
|
|
26714
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26715
|
+
}, (string | number)[] | {
|
|
26716
|
+
pins: (string | number)[];
|
|
26717
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26471
26718
|
}>>;
|
|
26472
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
26719
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
26473
26720
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
26474
26721
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
26475
26722
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26478,8 +26725,14 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
26478
26725
|
}, {
|
|
26479
26726
|
pins: (string | number)[];
|
|
26480
26727
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26728
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
26729
|
+
pins: (string | number)[];
|
|
26730
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26731
|
+
}, (string | number)[] | {
|
|
26732
|
+
pins: (string | number)[];
|
|
26733
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26481
26734
|
}>>;
|
|
26482
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
26735
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
26483
26736
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
26484
26737
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
26485
26738
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26488,8 +26741,14 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
26488
26741
|
}, {
|
|
26489
26742
|
pins: (string | number)[];
|
|
26490
26743
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26744
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
26745
|
+
pins: (string | number)[];
|
|
26746
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26747
|
+
}, (string | number)[] | {
|
|
26748
|
+
pins: (string | number)[];
|
|
26749
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26491
26750
|
}>>;
|
|
26492
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
26751
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
26493
26752
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
26494
26753
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
26495
26754
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26498,6 +26757,12 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
26498
26757
|
}, {
|
|
26499
26758
|
pins: (string | number)[];
|
|
26500
26759
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26760
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
26761
|
+
pins: (string | number)[];
|
|
26762
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26763
|
+
}, (string | number)[] | {
|
|
26764
|
+
pins: (string | number)[];
|
|
26765
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26501
26766
|
}>>;
|
|
26502
26767
|
}, "strip", z.ZodTypeAny, {
|
|
26503
26768
|
leftSize?: number | undefined;
|
|
@@ -26529,19 +26794,19 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
26529
26794
|
topSize?: number | undefined;
|
|
26530
26795
|
rightSize?: number | undefined;
|
|
26531
26796
|
bottomSize?: number | undefined;
|
|
26532
|
-
leftSide?: {
|
|
26797
|
+
leftSide?: (string | number)[] | {
|
|
26533
26798
|
pins: (string | number)[];
|
|
26534
26799
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26535
26800
|
} | undefined;
|
|
26536
|
-
topSide?: {
|
|
26801
|
+
topSide?: (string | number)[] | {
|
|
26537
26802
|
pins: (string | number)[];
|
|
26538
26803
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26539
26804
|
} | undefined;
|
|
26540
|
-
rightSide?: {
|
|
26805
|
+
rightSide?: (string | number)[] | {
|
|
26541
26806
|
pins: (string | number)[];
|
|
26542
26807
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26543
26808
|
} | undefined;
|
|
26544
|
-
bottomSide?: {
|
|
26809
|
+
bottomSide?: (string | number)[] | {
|
|
26545
26810
|
pins: (string | number)[];
|
|
26546
26811
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
26547
26812
|
} | undefined;
|
|
@@ -27178,19 +27443,19 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
27178
27443
|
topSize?: number | undefined;
|
|
27179
27444
|
rightSize?: number | undefined;
|
|
27180
27445
|
bottomSize?: number | undefined;
|
|
27181
|
-
leftSide?: {
|
|
27446
|
+
leftSide?: (string | number)[] | {
|
|
27182
27447
|
pins: (string | number)[];
|
|
27183
27448
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27184
27449
|
} | undefined;
|
|
27185
|
-
topSide?: {
|
|
27450
|
+
topSide?: (string | number)[] | {
|
|
27186
27451
|
pins: (string | number)[];
|
|
27187
27452
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27188
27453
|
} | undefined;
|
|
27189
|
-
rightSide?: {
|
|
27454
|
+
rightSide?: (string | number)[] | {
|
|
27190
27455
|
pins: (string | number)[];
|
|
27191
27456
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27192
27457
|
} | undefined;
|
|
27193
|
-
bottomSide?: {
|
|
27458
|
+
bottomSide?: (string | number)[] | {
|
|
27194
27459
|
pins: (string | number)[];
|
|
27195
27460
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27196
27461
|
} | undefined;
|
|
@@ -30544,7 +30809,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
30544
30809
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
30545
30810
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
30546
30811
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
30547
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
30812
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
30548
30813
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
30549
30814
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
30550
30815
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30553,8 +30818,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
30553
30818
|
}, {
|
|
30554
30819
|
pins: (string | number)[];
|
|
30555
30820
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30821
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
30822
|
+
pins: (string | number)[];
|
|
30823
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30824
|
+
}, (string | number)[] | {
|
|
30825
|
+
pins: (string | number)[];
|
|
30826
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30556
30827
|
}>>;
|
|
30557
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
30828
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
30558
30829
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
30559
30830
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
30560
30831
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30563,8 +30834,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
30563
30834
|
}, {
|
|
30564
30835
|
pins: (string | number)[];
|
|
30565
30836
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30837
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
30838
|
+
pins: (string | number)[];
|
|
30839
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30840
|
+
}, (string | number)[] | {
|
|
30841
|
+
pins: (string | number)[];
|
|
30842
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30566
30843
|
}>>;
|
|
30567
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
30844
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
30568
30845
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
30569
30846
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
30570
30847
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30573,8 +30850,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
30573
30850
|
}, {
|
|
30574
30851
|
pins: (string | number)[];
|
|
30575
30852
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30853
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
30854
|
+
pins: (string | number)[];
|
|
30855
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30856
|
+
}, (string | number)[] | {
|
|
30857
|
+
pins: (string | number)[];
|
|
30858
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30576
30859
|
}>>;
|
|
30577
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
30860
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
30578
30861
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
30579
30862
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
30580
30863
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30583,6 +30866,12 @@ declare const chipProps: z.ZodObject<{
|
|
|
30583
30866
|
}, {
|
|
30584
30867
|
pins: (string | number)[];
|
|
30585
30868
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30869
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
30870
|
+
pins: (string | number)[];
|
|
30871
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30872
|
+
}, (string | number)[] | {
|
|
30873
|
+
pins: (string | number)[];
|
|
30874
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30586
30875
|
}>>;
|
|
30587
30876
|
}, "strip", z.ZodTypeAny, {
|
|
30588
30877
|
leftSize?: number | undefined;
|
|
@@ -30614,19 +30903,19 @@ declare const chipProps: z.ZodObject<{
|
|
|
30614
30903
|
topSize?: number | undefined;
|
|
30615
30904
|
rightSize?: number | undefined;
|
|
30616
30905
|
bottomSize?: number | undefined;
|
|
30617
|
-
leftSide?: {
|
|
30906
|
+
leftSide?: (string | number)[] | {
|
|
30618
30907
|
pins: (string | number)[];
|
|
30619
30908
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30620
30909
|
} | undefined;
|
|
30621
|
-
topSide?: {
|
|
30910
|
+
topSide?: (string | number)[] | {
|
|
30622
30911
|
pins: (string | number)[];
|
|
30623
30912
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30624
30913
|
} | undefined;
|
|
30625
|
-
rightSide?: {
|
|
30914
|
+
rightSide?: (string | number)[] | {
|
|
30626
30915
|
pins: (string | number)[];
|
|
30627
30916
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30628
30917
|
} | undefined;
|
|
30629
|
-
bottomSide?: {
|
|
30918
|
+
bottomSide?: (string | number)[] | {
|
|
30630
30919
|
pins: (string | number)[];
|
|
30631
30920
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30632
30921
|
} | undefined;
|
|
@@ -30644,7 +30933,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
30644
30933
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
30645
30934
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
30646
30935
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
30647
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
30936
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
30648
30937
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
30649
30938
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
30650
30939
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30653,8 +30942,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
30653
30942
|
}, {
|
|
30654
30943
|
pins: (string | number)[];
|
|
30655
30944
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30945
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
30946
|
+
pins: (string | number)[];
|
|
30947
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30948
|
+
}, (string | number)[] | {
|
|
30949
|
+
pins: (string | number)[];
|
|
30950
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30656
30951
|
}>>;
|
|
30657
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
30952
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
30658
30953
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
30659
30954
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
30660
30955
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30663,8 +30958,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
30663
30958
|
}, {
|
|
30664
30959
|
pins: (string | number)[];
|
|
30665
30960
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30961
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
30962
|
+
pins: (string | number)[];
|
|
30963
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30964
|
+
}, (string | number)[] | {
|
|
30965
|
+
pins: (string | number)[];
|
|
30966
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30666
30967
|
}>>;
|
|
30667
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
30968
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
30668
30969
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
30669
30970
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
30670
30971
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30673,8 +30974,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
30673
30974
|
}, {
|
|
30674
30975
|
pins: (string | number)[];
|
|
30675
30976
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30977
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
30978
|
+
pins: (string | number)[];
|
|
30979
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30980
|
+
}, (string | number)[] | {
|
|
30981
|
+
pins: (string | number)[];
|
|
30982
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30676
30983
|
}>>;
|
|
30677
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
30984
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
30678
30985
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
30679
30986
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
30680
30987
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30683,6 +30990,12 @@ declare const chipProps: z.ZodObject<{
|
|
|
30683
30990
|
}, {
|
|
30684
30991
|
pins: (string | number)[];
|
|
30685
30992
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30993
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
30994
|
+
pins: (string | number)[];
|
|
30995
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30996
|
+
}, (string | number)[] | {
|
|
30997
|
+
pins: (string | number)[];
|
|
30998
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30686
30999
|
}>>;
|
|
30687
31000
|
}, "strip", z.ZodTypeAny, {
|
|
30688
31001
|
leftSize?: number | undefined;
|
|
@@ -30714,19 +31027,19 @@ declare const chipProps: z.ZodObject<{
|
|
|
30714
31027
|
topSize?: number | undefined;
|
|
30715
31028
|
rightSize?: number | undefined;
|
|
30716
31029
|
bottomSize?: number | undefined;
|
|
30717
|
-
leftSide?: {
|
|
31030
|
+
leftSide?: (string | number)[] | {
|
|
30718
31031
|
pins: (string | number)[];
|
|
30719
31032
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30720
31033
|
} | undefined;
|
|
30721
|
-
topSide?: {
|
|
31034
|
+
topSide?: (string | number)[] | {
|
|
30722
31035
|
pins: (string | number)[];
|
|
30723
31036
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30724
31037
|
} | undefined;
|
|
30725
|
-
rightSide?: {
|
|
31038
|
+
rightSide?: (string | number)[] | {
|
|
30726
31039
|
pins: (string | number)[];
|
|
30727
31040
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30728
31041
|
} | undefined;
|
|
30729
|
-
bottomSide?: {
|
|
31042
|
+
bottomSide?: (string | number)[] | {
|
|
30730
31043
|
pins: (string | number)[];
|
|
30731
31044
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
30732
31045
|
} | undefined;
|
|
@@ -31852,19 +32165,19 @@ declare const chipProps: z.ZodObject<{
|
|
|
31852
32165
|
topSize?: number | undefined;
|
|
31853
32166
|
rightSize?: number | undefined;
|
|
31854
32167
|
bottomSize?: number | undefined;
|
|
31855
|
-
leftSide?: {
|
|
32168
|
+
leftSide?: (string | number)[] | {
|
|
31856
32169
|
pins: (string | number)[];
|
|
31857
32170
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31858
32171
|
} | undefined;
|
|
31859
|
-
topSide?: {
|
|
32172
|
+
topSide?: (string | number)[] | {
|
|
31860
32173
|
pins: (string | number)[];
|
|
31861
32174
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31862
32175
|
} | undefined;
|
|
31863
|
-
rightSide?: {
|
|
32176
|
+
rightSide?: (string | number)[] | {
|
|
31864
32177
|
pins: (string | number)[];
|
|
31865
32178
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31866
32179
|
} | undefined;
|
|
31867
|
-
bottomSide?: {
|
|
32180
|
+
bottomSide?: (string | number)[] | {
|
|
31868
32181
|
pins: (string | number)[];
|
|
31869
32182
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31870
32183
|
} | undefined;
|
|
@@ -31896,19 +32209,19 @@ declare const chipProps: z.ZodObject<{
|
|
|
31896
32209
|
topSize?: number | undefined;
|
|
31897
32210
|
rightSize?: number | undefined;
|
|
31898
32211
|
bottomSize?: number | undefined;
|
|
31899
|
-
leftSide?: {
|
|
32212
|
+
leftSide?: (string | number)[] | {
|
|
31900
32213
|
pins: (string | number)[];
|
|
31901
32214
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31902
32215
|
} | undefined;
|
|
31903
|
-
topSide?: {
|
|
32216
|
+
topSide?: (string | number)[] | {
|
|
31904
32217
|
pins: (string | number)[];
|
|
31905
32218
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31906
32219
|
} | undefined;
|
|
31907
|
-
rightSide?: {
|
|
32220
|
+
rightSide?: (string | number)[] | {
|
|
31908
32221
|
pins: (string | number)[];
|
|
31909
32222
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31910
32223
|
} | undefined;
|
|
31911
|
-
bottomSide?: {
|
|
32224
|
+
bottomSide?: (string | number)[] | {
|
|
31912
32225
|
pins: (string | number)[];
|
|
31913
32226
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31914
32227
|
} | undefined;
|
|
@@ -35003,7 +35316,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35003
35316
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
35004
35317
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
35005
35318
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
35006
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
35319
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
35007
35320
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35008
35321
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35009
35322
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35012,8 +35325,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
35012
35325
|
}, {
|
|
35013
35326
|
pins: (string | number)[];
|
|
35014
35327
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35328
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
35329
|
+
pins: (string | number)[];
|
|
35330
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35331
|
+
}, (string | number)[] | {
|
|
35332
|
+
pins: (string | number)[];
|
|
35333
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35015
35334
|
}>>;
|
|
35016
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
35335
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
35017
35336
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35018
35337
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35019
35338
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35022,8 +35341,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
35022
35341
|
}, {
|
|
35023
35342
|
pins: (string | number)[];
|
|
35024
35343
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35344
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
35345
|
+
pins: (string | number)[];
|
|
35346
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35347
|
+
}, (string | number)[] | {
|
|
35348
|
+
pins: (string | number)[];
|
|
35349
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35025
35350
|
}>>;
|
|
35026
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
35351
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
35027
35352
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35028
35353
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35029
35354
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35032,8 +35357,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
35032
35357
|
}, {
|
|
35033
35358
|
pins: (string | number)[];
|
|
35034
35359
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35360
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
35361
|
+
pins: (string | number)[];
|
|
35362
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35363
|
+
}, (string | number)[] | {
|
|
35364
|
+
pins: (string | number)[];
|
|
35365
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35035
35366
|
}>>;
|
|
35036
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
35367
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
35037
35368
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35038
35369
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35039
35370
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35042,6 +35373,12 @@ declare const bugProps: z.ZodObject<{
|
|
|
35042
35373
|
}, {
|
|
35043
35374
|
pins: (string | number)[];
|
|
35044
35375
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35376
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
35377
|
+
pins: (string | number)[];
|
|
35378
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35379
|
+
}, (string | number)[] | {
|
|
35380
|
+
pins: (string | number)[];
|
|
35381
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35045
35382
|
}>>;
|
|
35046
35383
|
}, "strip", z.ZodTypeAny, {
|
|
35047
35384
|
leftSize?: number | undefined;
|
|
@@ -35073,19 +35410,19 @@ declare const bugProps: z.ZodObject<{
|
|
|
35073
35410
|
topSize?: number | undefined;
|
|
35074
35411
|
rightSize?: number | undefined;
|
|
35075
35412
|
bottomSize?: number | undefined;
|
|
35076
|
-
leftSide?: {
|
|
35413
|
+
leftSide?: (string | number)[] | {
|
|
35077
35414
|
pins: (string | number)[];
|
|
35078
35415
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35079
35416
|
} | undefined;
|
|
35080
|
-
topSide?: {
|
|
35417
|
+
topSide?: (string | number)[] | {
|
|
35081
35418
|
pins: (string | number)[];
|
|
35082
35419
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35083
35420
|
} | undefined;
|
|
35084
|
-
rightSide?: {
|
|
35421
|
+
rightSide?: (string | number)[] | {
|
|
35085
35422
|
pins: (string | number)[];
|
|
35086
35423
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35087
35424
|
} | undefined;
|
|
35088
|
-
bottomSide?: {
|
|
35425
|
+
bottomSide?: (string | number)[] | {
|
|
35089
35426
|
pins: (string | number)[];
|
|
35090
35427
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35091
35428
|
} | undefined;
|
|
@@ -35103,7 +35440,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35103
35440
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
35104
35441
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
35105
35442
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
35106
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
35443
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
35107
35444
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35108
35445
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35109
35446
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35112,8 +35449,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
35112
35449
|
}, {
|
|
35113
35450
|
pins: (string | number)[];
|
|
35114
35451
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35452
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
35453
|
+
pins: (string | number)[];
|
|
35454
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35455
|
+
}, (string | number)[] | {
|
|
35456
|
+
pins: (string | number)[];
|
|
35457
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35115
35458
|
}>>;
|
|
35116
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
35459
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
35117
35460
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35118
35461
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35119
35462
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35122,8 +35465,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
35122
35465
|
}, {
|
|
35123
35466
|
pins: (string | number)[];
|
|
35124
35467
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35468
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
35469
|
+
pins: (string | number)[];
|
|
35470
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35471
|
+
}, (string | number)[] | {
|
|
35472
|
+
pins: (string | number)[];
|
|
35473
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35125
35474
|
}>>;
|
|
35126
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
35475
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
35127
35476
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35128
35477
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35129
35478
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35132,8 +35481,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
35132
35481
|
}, {
|
|
35133
35482
|
pins: (string | number)[];
|
|
35134
35483
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35484
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
35485
|
+
pins: (string | number)[];
|
|
35486
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35487
|
+
}, (string | number)[] | {
|
|
35488
|
+
pins: (string | number)[];
|
|
35489
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35135
35490
|
}>>;
|
|
35136
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
35491
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
35137
35492
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35138
35493
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35139
35494
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35142,6 +35497,12 @@ declare const bugProps: z.ZodObject<{
|
|
|
35142
35497
|
}, {
|
|
35143
35498
|
pins: (string | number)[];
|
|
35144
35499
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35500
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
35501
|
+
pins: (string | number)[];
|
|
35502
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35503
|
+
}, (string | number)[] | {
|
|
35504
|
+
pins: (string | number)[];
|
|
35505
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35145
35506
|
}>>;
|
|
35146
35507
|
}, "strip", z.ZodTypeAny, {
|
|
35147
35508
|
leftSize?: number | undefined;
|
|
@@ -35173,19 +35534,19 @@ declare const bugProps: z.ZodObject<{
|
|
|
35173
35534
|
topSize?: number | undefined;
|
|
35174
35535
|
rightSize?: number | undefined;
|
|
35175
35536
|
bottomSize?: number | undefined;
|
|
35176
|
-
leftSide?: {
|
|
35537
|
+
leftSide?: (string | number)[] | {
|
|
35177
35538
|
pins: (string | number)[];
|
|
35178
35539
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35179
35540
|
} | undefined;
|
|
35180
|
-
topSide?: {
|
|
35541
|
+
topSide?: (string | number)[] | {
|
|
35181
35542
|
pins: (string | number)[];
|
|
35182
35543
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35183
35544
|
} | undefined;
|
|
35184
|
-
rightSide?: {
|
|
35545
|
+
rightSide?: (string | number)[] | {
|
|
35185
35546
|
pins: (string | number)[];
|
|
35186
35547
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35187
35548
|
} | undefined;
|
|
35188
|
-
bottomSide?: {
|
|
35549
|
+
bottomSide?: (string | number)[] | {
|
|
35189
35550
|
pins: (string | number)[];
|
|
35190
35551
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35191
35552
|
} | undefined;
|
|
@@ -36311,19 +36672,19 @@ declare const bugProps: z.ZodObject<{
|
|
|
36311
36672
|
topSize?: number | undefined;
|
|
36312
36673
|
rightSize?: number | undefined;
|
|
36313
36674
|
bottomSize?: number | undefined;
|
|
36314
|
-
leftSide?: {
|
|
36675
|
+
leftSide?: (string | number)[] | {
|
|
36315
36676
|
pins: (string | number)[];
|
|
36316
36677
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36317
36678
|
} | undefined;
|
|
36318
|
-
topSide?: {
|
|
36679
|
+
topSide?: (string | number)[] | {
|
|
36319
36680
|
pins: (string | number)[];
|
|
36320
36681
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36321
36682
|
} | undefined;
|
|
36322
|
-
rightSide?: {
|
|
36683
|
+
rightSide?: (string | number)[] | {
|
|
36323
36684
|
pins: (string | number)[];
|
|
36324
36685
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36325
36686
|
} | undefined;
|
|
36326
|
-
bottomSide?: {
|
|
36687
|
+
bottomSide?: (string | number)[] | {
|
|
36327
36688
|
pins: (string | number)[];
|
|
36328
36689
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36329
36690
|
} | undefined;
|
|
@@ -36355,19 +36716,19 @@ declare const bugProps: z.ZodObject<{
|
|
|
36355
36716
|
topSize?: number | undefined;
|
|
36356
36717
|
rightSize?: number | undefined;
|
|
36357
36718
|
bottomSize?: number | undefined;
|
|
36358
|
-
leftSide?: {
|
|
36719
|
+
leftSide?: (string | number)[] | {
|
|
36359
36720
|
pins: (string | number)[];
|
|
36360
36721
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36361
36722
|
} | undefined;
|
|
36362
|
-
topSide?: {
|
|
36723
|
+
topSide?: (string | number)[] | {
|
|
36363
36724
|
pins: (string | number)[];
|
|
36364
36725
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36365
36726
|
} | undefined;
|
|
36366
|
-
rightSide?: {
|
|
36727
|
+
rightSide?: (string | number)[] | {
|
|
36367
36728
|
pins: (string | number)[];
|
|
36368
36729
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36369
36730
|
} | undefined;
|
|
36370
|
-
bottomSide?: {
|
|
36731
|
+
bottomSide?: (string | number)[] | {
|
|
36371
36732
|
pins: (string | number)[];
|
|
36372
36733
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36373
36734
|
} | undefined;
|
|
@@ -39461,7 +39822,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39461
39822
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
39462
39823
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
39463
39824
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
39464
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
39825
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
39465
39826
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
39466
39827
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
39467
39828
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39470,8 +39831,14 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39470
39831
|
}, {
|
|
39471
39832
|
pins: (string | number)[];
|
|
39472
39833
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39834
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
39835
|
+
pins: (string | number)[];
|
|
39836
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39837
|
+
}, (string | number)[] | {
|
|
39838
|
+
pins: (string | number)[];
|
|
39839
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39473
39840
|
}>>;
|
|
39474
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
39841
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
39475
39842
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
39476
39843
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
39477
39844
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39480,8 +39847,14 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39480
39847
|
}, {
|
|
39481
39848
|
pins: (string | number)[];
|
|
39482
39849
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39850
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
39851
|
+
pins: (string | number)[];
|
|
39852
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39853
|
+
}, (string | number)[] | {
|
|
39854
|
+
pins: (string | number)[];
|
|
39855
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39483
39856
|
}>>;
|
|
39484
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
39857
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
39485
39858
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
39486
39859
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
39487
39860
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39490,8 +39863,14 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39490
39863
|
}, {
|
|
39491
39864
|
pins: (string | number)[];
|
|
39492
39865
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39866
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
39867
|
+
pins: (string | number)[];
|
|
39868
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39869
|
+
}, (string | number)[] | {
|
|
39870
|
+
pins: (string | number)[];
|
|
39871
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39493
39872
|
}>>;
|
|
39494
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
39873
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
39495
39874
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
39496
39875
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
39497
39876
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39500,6 +39879,12 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39500
39879
|
}, {
|
|
39501
39880
|
pins: (string | number)[];
|
|
39502
39881
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39882
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
39883
|
+
pins: (string | number)[];
|
|
39884
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39885
|
+
}, (string | number)[] | {
|
|
39886
|
+
pins: (string | number)[];
|
|
39887
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39503
39888
|
}>>;
|
|
39504
39889
|
}, "strip", z.ZodTypeAny, {
|
|
39505
39890
|
leftSize?: number | undefined;
|
|
@@ -39531,19 +39916,19 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39531
39916
|
topSize?: number | undefined;
|
|
39532
39917
|
rightSize?: number | undefined;
|
|
39533
39918
|
bottomSize?: number | undefined;
|
|
39534
|
-
leftSide?: {
|
|
39919
|
+
leftSide?: (string | number)[] | {
|
|
39535
39920
|
pins: (string | number)[];
|
|
39536
39921
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39537
39922
|
} | undefined;
|
|
39538
|
-
topSide?: {
|
|
39923
|
+
topSide?: (string | number)[] | {
|
|
39539
39924
|
pins: (string | number)[];
|
|
39540
39925
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39541
39926
|
} | undefined;
|
|
39542
|
-
rightSide?: {
|
|
39927
|
+
rightSide?: (string | number)[] | {
|
|
39543
39928
|
pins: (string | number)[];
|
|
39544
39929
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39545
39930
|
} | undefined;
|
|
39546
|
-
bottomSide?: {
|
|
39931
|
+
bottomSide?: (string | number)[] | {
|
|
39547
39932
|
pins: (string | number)[];
|
|
39548
39933
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39549
39934
|
} | undefined;
|
|
@@ -39561,7 +39946,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39561
39946
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
39562
39947
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
39563
39948
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
39564
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
39949
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
39565
39950
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
39566
39951
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
39567
39952
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39570,8 +39955,14 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39570
39955
|
}, {
|
|
39571
39956
|
pins: (string | number)[];
|
|
39572
39957
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39958
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
39959
|
+
pins: (string | number)[];
|
|
39960
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39961
|
+
}, (string | number)[] | {
|
|
39962
|
+
pins: (string | number)[];
|
|
39963
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39573
39964
|
}>>;
|
|
39574
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
39965
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
39575
39966
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
39576
39967
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
39577
39968
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39580,8 +39971,14 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39580
39971
|
}, {
|
|
39581
39972
|
pins: (string | number)[];
|
|
39582
39973
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39974
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
39975
|
+
pins: (string | number)[];
|
|
39976
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39977
|
+
}, (string | number)[] | {
|
|
39978
|
+
pins: (string | number)[];
|
|
39979
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39583
39980
|
}>>;
|
|
39584
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
39981
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
39585
39982
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
39586
39983
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
39587
39984
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39590,8 +39987,14 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39590
39987
|
}, {
|
|
39591
39988
|
pins: (string | number)[];
|
|
39592
39989
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39990
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
39991
|
+
pins: (string | number)[];
|
|
39992
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39993
|
+
}, (string | number)[] | {
|
|
39994
|
+
pins: (string | number)[];
|
|
39995
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39593
39996
|
}>>;
|
|
39594
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
39997
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
39595
39998
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
39596
39999
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
39597
40000
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39600,6 +40003,12 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39600
40003
|
}, {
|
|
39601
40004
|
pins: (string | number)[];
|
|
39602
40005
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40006
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
40007
|
+
pins: (string | number)[];
|
|
40008
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40009
|
+
}, (string | number)[] | {
|
|
40010
|
+
pins: (string | number)[];
|
|
40011
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39603
40012
|
}>>;
|
|
39604
40013
|
}, "strip", z.ZodTypeAny, {
|
|
39605
40014
|
leftSize?: number | undefined;
|
|
@@ -39631,19 +40040,19 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39631
40040
|
topSize?: number | undefined;
|
|
39632
40041
|
rightSize?: number | undefined;
|
|
39633
40042
|
bottomSize?: number | undefined;
|
|
39634
|
-
leftSide?: {
|
|
40043
|
+
leftSide?: (string | number)[] | {
|
|
39635
40044
|
pins: (string | number)[];
|
|
39636
40045
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39637
40046
|
} | undefined;
|
|
39638
|
-
topSide?: {
|
|
40047
|
+
topSide?: (string | number)[] | {
|
|
39639
40048
|
pins: (string | number)[];
|
|
39640
40049
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39641
40050
|
} | undefined;
|
|
39642
|
-
rightSide?: {
|
|
40051
|
+
rightSide?: (string | number)[] | {
|
|
39643
40052
|
pins: (string | number)[];
|
|
39644
40053
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39645
40054
|
} | undefined;
|
|
39646
|
-
bottomSide?: {
|
|
40055
|
+
bottomSide?: (string | number)[] | {
|
|
39647
40056
|
pins: (string | number)[];
|
|
39648
40057
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
39649
40058
|
} | undefined;
|
|
@@ -40769,19 +41178,19 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40769
41178
|
topSize?: number | undefined;
|
|
40770
41179
|
rightSize?: number | undefined;
|
|
40771
41180
|
bottomSize?: number | undefined;
|
|
40772
|
-
leftSide?: {
|
|
41181
|
+
leftSide?: (string | number)[] | {
|
|
40773
41182
|
pins: (string | number)[];
|
|
40774
41183
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40775
41184
|
} | undefined;
|
|
40776
|
-
topSide?: {
|
|
41185
|
+
topSide?: (string | number)[] | {
|
|
40777
41186
|
pins: (string | number)[];
|
|
40778
41187
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40779
41188
|
} | undefined;
|
|
40780
|
-
rightSide?: {
|
|
41189
|
+
rightSide?: (string | number)[] | {
|
|
40781
41190
|
pins: (string | number)[];
|
|
40782
41191
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40783
41192
|
} | undefined;
|
|
40784
|
-
bottomSide?: {
|
|
41193
|
+
bottomSide?: (string | number)[] | {
|
|
40785
41194
|
pins: (string | number)[];
|
|
40786
41195
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40787
41196
|
} | undefined;
|
|
@@ -40813,19 +41222,19 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40813
41222
|
topSize?: number | undefined;
|
|
40814
41223
|
rightSize?: number | undefined;
|
|
40815
41224
|
bottomSize?: number | undefined;
|
|
40816
|
-
leftSide?: {
|
|
41225
|
+
leftSide?: (string | number)[] | {
|
|
40817
41226
|
pins: (string | number)[];
|
|
40818
41227
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40819
41228
|
} | undefined;
|
|
40820
|
-
topSide?: {
|
|
41229
|
+
topSide?: (string | number)[] | {
|
|
40821
41230
|
pins: (string | number)[];
|
|
40822
41231
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40823
41232
|
} | undefined;
|
|
40824
|
-
rightSide?: {
|
|
41233
|
+
rightSide?: (string | number)[] | {
|
|
40825
41234
|
pins: (string | number)[];
|
|
40826
41235
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40827
41236
|
} | undefined;
|
|
40828
|
-
bottomSide?: {
|
|
41237
|
+
bottomSide?: (string | number)[] | {
|
|
40829
41238
|
pins: (string | number)[];
|
|
40830
41239
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40831
41240
|
} | undefined;
|
|
@@ -43979,7 +44388,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
43979
44388
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
43980
44389
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
43981
44390
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
43982
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
44391
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
43983
44392
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
43984
44393
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
43985
44394
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -43988,8 +44397,14 @@ declare const jumperProps: z.ZodObject<{
|
|
|
43988
44397
|
}, {
|
|
43989
44398
|
pins: (string | number)[];
|
|
43990
44399
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44400
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
44401
|
+
pins: (string | number)[];
|
|
44402
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44403
|
+
}, (string | number)[] | {
|
|
44404
|
+
pins: (string | number)[];
|
|
44405
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
43991
44406
|
}>>;
|
|
43992
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
44407
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
43993
44408
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
43994
44409
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
43995
44410
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -43998,8 +44413,14 @@ declare const jumperProps: z.ZodObject<{
|
|
|
43998
44413
|
}, {
|
|
43999
44414
|
pins: (string | number)[];
|
|
44000
44415
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44416
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
44417
|
+
pins: (string | number)[];
|
|
44418
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44419
|
+
}, (string | number)[] | {
|
|
44420
|
+
pins: (string | number)[];
|
|
44421
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44001
44422
|
}>>;
|
|
44002
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
44423
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
44003
44424
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
44004
44425
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
44005
44426
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -44008,8 +44429,14 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44008
44429
|
}, {
|
|
44009
44430
|
pins: (string | number)[];
|
|
44010
44431
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44432
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
44433
|
+
pins: (string | number)[];
|
|
44434
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44435
|
+
}, (string | number)[] | {
|
|
44436
|
+
pins: (string | number)[];
|
|
44437
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44011
44438
|
}>>;
|
|
44012
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
44439
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
44013
44440
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
44014
44441
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
44015
44442
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -44018,6 +44445,12 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44018
44445
|
}, {
|
|
44019
44446
|
pins: (string | number)[];
|
|
44020
44447
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44448
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
44449
|
+
pins: (string | number)[];
|
|
44450
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44451
|
+
}, (string | number)[] | {
|
|
44452
|
+
pins: (string | number)[];
|
|
44453
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44021
44454
|
}>>;
|
|
44022
44455
|
}, "strip", z.ZodTypeAny, {
|
|
44023
44456
|
leftSize?: number | undefined;
|
|
@@ -44049,19 +44482,19 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44049
44482
|
topSize?: number | undefined;
|
|
44050
44483
|
rightSize?: number | undefined;
|
|
44051
44484
|
bottomSize?: number | undefined;
|
|
44052
|
-
leftSide?: {
|
|
44485
|
+
leftSide?: (string | number)[] | {
|
|
44053
44486
|
pins: (string | number)[];
|
|
44054
44487
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44055
44488
|
} | undefined;
|
|
44056
|
-
topSide?: {
|
|
44489
|
+
topSide?: (string | number)[] | {
|
|
44057
44490
|
pins: (string | number)[];
|
|
44058
44491
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44059
44492
|
} | undefined;
|
|
44060
|
-
rightSide?: {
|
|
44493
|
+
rightSide?: (string | number)[] | {
|
|
44061
44494
|
pins: (string | number)[];
|
|
44062
44495
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44063
44496
|
} | undefined;
|
|
44064
|
-
bottomSide?: {
|
|
44497
|
+
bottomSide?: (string | number)[] | {
|
|
44065
44498
|
pins: (string | number)[];
|
|
44066
44499
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44067
44500
|
} | undefined;
|
|
@@ -44079,7 +44512,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44079
44512
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
44080
44513
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
44081
44514
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
44082
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
44515
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
44083
44516
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
44084
44517
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
44085
44518
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -44088,8 +44521,14 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44088
44521
|
}, {
|
|
44089
44522
|
pins: (string | number)[];
|
|
44090
44523
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44524
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
44525
|
+
pins: (string | number)[];
|
|
44526
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44527
|
+
}, (string | number)[] | {
|
|
44528
|
+
pins: (string | number)[];
|
|
44529
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44091
44530
|
}>>;
|
|
44092
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
44531
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
44093
44532
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
44094
44533
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
44095
44534
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -44098,8 +44537,14 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44098
44537
|
}, {
|
|
44099
44538
|
pins: (string | number)[];
|
|
44100
44539
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44540
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
44541
|
+
pins: (string | number)[];
|
|
44542
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44543
|
+
}, (string | number)[] | {
|
|
44544
|
+
pins: (string | number)[];
|
|
44545
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44101
44546
|
}>>;
|
|
44102
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
44547
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
44103
44548
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
44104
44549
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
44105
44550
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -44108,8 +44553,14 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44108
44553
|
}, {
|
|
44109
44554
|
pins: (string | number)[];
|
|
44110
44555
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44556
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
44557
|
+
pins: (string | number)[];
|
|
44558
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44559
|
+
}, (string | number)[] | {
|
|
44560
|
+
pins: (string | number)[];
|
|
44561
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44111
44562
|
}>>;
|
|
44112
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
44563
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
44113
44564
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
44114
44565
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
44115
44566
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -44118,6 +44569,12 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44118
44569
|
}, {
|
|
44119
44570
|
pins: (string | number)[];
|
|
44120
44571
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44572
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
44573
|
+
pins: (string | number)[];
|
|
44574
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44575
|
+
}, (string | number)[] | {
|
|
44576
|
+
pins: (string | number)[];
|
|
44577
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44121
44578
|
}>>;
|
|
44122
44579
|
}, "strip", z.ZodTypeAny, {
|
|
44123
44580
|
leftSize?: number | undefined;
|
|
@@ -44149,19 +44606,19 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44149
44606
|
topSize?: number | undefined;
|
|
44150
44607
|
rightSize?: number | undefined;
|
|
44151
44608
|
bottomSize?: number | undefined;
|
|
44152
|
-
leftSide?: {
|
|
44609
|
+
leftSide?: (string | number)[] | {
|
|
44153
44610
|
pins: (string | number)[];
|
|
44154
44611
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44155
44612
|
} | undefined;
|
|
44156
|
-
topSide?: {
|
|
44613
|
+
topSide?: (string | number)[] | {
|
|
44157
44614
|
pins: (string | number)[];
|
|
44158
44615
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44159
44616
|
} | undefined;
|
|
44160
|
-
rightSide?: {
|
|
44617
|
+
rightSide?: (string | number)[] | {
|
|
44161
44618
|
pins: (string | number)[];
|
|
44162
44619
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44163
44620
|
} | undefined;
|
|
44164
|
-
bottomSide?: {
|
|
44621
|
+
bottomSide?: (string | number)[] | {
|
|
44165
44622
|
pins: (string | number)[];
|
|
44166
44623
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
44167
44624
|
} | undefined;
|
|
@@ -45243,19 +45700,19 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45243
45700
|
topSize?: number | undefined;
|
|
45244
45701
|
rightSize?: number | undefined;
|
|
45245
45702
|
bottomSize?: number | undefined;
|
|
45246
|
-
leftSide?: {
|
|
45703
|
+
leftSide?: (string | number)[] | {
|
|
45247
45704
|
pins: (string | number)[];
|
|
45248
45705
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
45249
45706
|
} | undefined;
|
|
45250
|
-
topSide?: {
|
|
45707
|
+
topSide?: (string | number)[] | {
|
|
45251
45708
|
pins: (string | number)[];
|
|
45252
45709
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
45253
45710
|
} | undefined;
|
|
45254
|
-
rightSide?: {
|
|
45711
|
+
rightSide?: (string | number)[] | {
|
|
45255
45712
|
pins: (string | number)[];
|
|
45256
45713
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
45257
45714
|
} | undefined;
|
|
45258
|
-
bottomSide?: {
|
|
45715
|
+
bottomSide?: (string | number)[] | {
|
|
45259
45716
|
pins: (string | number)[];
|
|
45260
45717
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
45261
45718
|
} | undefined;
|
|
@@ -45285,19 +45742,19 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45285
45742
|
topSize?: number | undefined;
|
|
45286
45743
|
rightSize?: number | undefined;
|
|
45287
45744
|
bottomSize?: number | undefined;
|
|
45288
|
-
leftSide?: {
|
|
45745
|
+
leftSide?: (string | number)[] | {
|
|
45289
45746
|
pins: (string | number)[];
|
|
45290
45747
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
45291
45748
|
} | undefined;
|
|
45292
|
-
topSide?: {
|
|
45749
|
+
topSide?: (string | number)[] | {
|
|
45293
45750
|
pins: (string | number)[];
|
|
45294
45751
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
45295
45752
|
} | undefined;
|
|
45296
|
-
rightSide?: {
|
|
45753
|
+
rightSide?: (string | number)[] | {
|
|
45297
45754
|
pins: (string | number)[];
|
|
45298
45755
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
45299
45756
|
} | undefined;
|
|
45300
|
-
bottomSide?: {
|
|
45757
|
+
bottomSide?: (string | number)[] | {
|
|
45301
45758
|
pins: (string | number)[];
|
|
45302
45759
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
45303
45760
|
} | undefined;
|
|
@@ -48425,7 +48882,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48425
48882
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
48426
48883
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
48427
48884
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
48428
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
48885
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
48429
48886
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
48430
48887
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
48431
48888
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48434,8 +48891,14 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48434
48891
|
}, {
|
|
48435
48892
|
pins: (string | number)[];
|
|
48436
48893
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48894
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
48895
|
+
pins: (string | number)[];
|
|
48896
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48897
|
+
}, (string | number)[] | {
|
|
48898
|
+
pins: (string | number)[];
|
|
48899
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48437
48900
|
}>>;
|
|
48438
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
48901
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
48439
48902
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
48440
48903
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
48441
48904
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48444,8 +48907,14 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48444
48907
|
}, {
|
|
48445
48908
|
pins: (string | number)[];
|
|
48446
48909
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48910
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
48911
|
+
pins: (string | number)[];
|
|
48912
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48913
|
+
}, (string | number)[] | {
|
|
48914
|
+
pins: (string | number)[];
|
|
48915
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48447
48916
|
}>>;
|
|
48448
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
48917
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
48449
48918
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
48450
48919
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
48451
48920
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48454,8 +48923,14 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48454
48923
|
}, {
|
|
48455
48924
|
pins: (string | number)[];
|
|
48456
48925
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48926
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
48927
|
+
pins: (string | number)[];
|
|
48928
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48929
|
+
}, (string | number)[] | {
|
|
48930
|
+
pins: (string | number)[];
|
|
48931
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48457
48932
|
}>>;
|
|
48458
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
48933
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
48459
48934
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
48460
48935
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
48461
48936
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48464,6 +48939,12 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48464
48939
|
}, {
|
|
48465
48940
|
pins: (string | number)[];
|
|
48466
48941
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48942
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
48943
|
+
pins: (string | number)[];
|
|
48944
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48945
|
+
}, (string | number)[] | {
|
|
48946
|
+
pins: (string | number)[];
|
|
48947
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48467
48948
|
}>>;
|
|
48468
48949
|
}, "strip", z.ZodTypeAny, {
|
|
48469
48950
|
leftSize?: number | undefined;
|
|
@@ -48495,19 +48976,19 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48495
48976
|
topSize?: number | undefined;
|
|
48496
48977
|
rightSize?: number | undefined;
|
|
48497
48978
|
bottomSize?: number | undefined;
|
|
48498
|
-
leftSide?: {
|
|
48979
|
+
leftSide?: (string | number)[] | {
|
|
48499
48980
|
pins: (string | number)[];
|
|
48500
48981
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48501
48982
|
} | undefined;
|
|
48502
|
-
topSide?: {
|
|
48983
|
+
topSide?: (string | number)[] | {
|
|
48503
48984
|
pins: (string | number)[];
|
|
48504
48985
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48505
48986
|
} | undefined;
|
|
48506
|
-
rightSide?: {
|
|
48987
|
+
rightSide?: (string | number)[] | {
|
|
48507
48988
|
pins: (string | number)[];
|
|
48508
48989
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48509
48990
|
} | undefined;
|
|
48510
|
-
bottomSide?: {
|
|
48991
|
+
bottomSide?: (string | number)[] | {
|
|
48511
48992
|
pins: (string | number)[];
|
|
48512
48993
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48513
48994
|
} | undefined;
|
|
@@ -48525,7 +49006,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48525
49006
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
48526
49007
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
48527
49008
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
48528
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
49009
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
48529
49010
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
48530
49011
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
48531
49012
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48534,8 +49015,14 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48534
49015
|
}, {
|
|
48535
49016
|
pins: (string | number)[];
|
|
48536
49017
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49018
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
49019
|
+
pins: (string | number)[];
|
|
49020
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49021
|
+
}, (string | number)[] | {
|
|
49022
|
+
pins: (string | number)[];
|
|
49023
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48537
49024
|
}>>;
|
|
48538
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
49025
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
48539
49026
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
48540
49027
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
48541
49028
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48544,8 +49031,14 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48544
49031
|
}, {
|
|
48545
49032
|
pins: (string | number)[];
|
|
48546
49033
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49034
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
49035
|
+
pins: (string | number)[];
|
|
49036
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49037
|
+
}, (string | number)[] | {
|
|
49038
|
+
pins: (string | number)[];
|
|
49039
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48547
49040
|
}>>;
|
|
48548
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
49041
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
48549
49042
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
48550
49043
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
48551
49044
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48554,8 +49047,14 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48554
49047
|
}, {
|
|
48555
49048
|
pins: (string | number)[];
|
|
48556
49049
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49050
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
49051
|
+
pins: (string | number)[];
|
|
49052
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49053
|
+
}, (string | number)[] | {
|
|
49054
|
+
pins: (string | number)[];
|
|
49055
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48557
49056
|
}>>;
|
|
48558
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
49057
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
48559
49058
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
48560
49059
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
48561
49060
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48564,6 +49063,12 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48564
49063
|
}, {
|
|
48565
49064
|
pins: (string | number)[];
|
|
48566
49065
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49066
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
49067
|
+
pins: (string | number)[];
|
|
49068
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49069
|
+
}, (string | number)[] | {
|
|
49070
|
+
pins: (string | number)[];
|
|
49071
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48567
49072
|
}>>;
|
|
48568
49073
|
}, "strip", z.ZodTypeAny, {
|
|
48569
49074
|
leftSize?: number | undefined;
|
|
@@ -48595,19 +49100,19 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48595
49100
|
topSize?: number | undefined;
|
|
48596
49101
|
rightSize?: number | undefined;
|
|
48597
49102
|
bottomSize?: number | undefined;
|
|
48598
|
-
leftSide?: {
|
|
49103
|
+
leftSide?: (string | number)[] | {
|
|
48599
49104
|
pins: (string | number)[];
|
|
48600
49105
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48601
49106
|
} | undefined;
|
|
48602
|
-
topSide?: {
|
|
49107
|
+
topSide?: (string | number)[] | {
|
|
48603
49108
|
pins: (string | number)[];
|
|
48604
49109
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48605
49110
|
} | undefined;
|
|
48606
|
-
rightSide?: {
|
|
49111
|
+
rightSide?: (string | number)[] | {
|
|
48607
49112
|
pins: (string | number)[];
|
|
48608
49113
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48609
49114
|
} | undefined;
|
|
48610
|
-
bottomSide?: {
|
|
49115
|
+
bottomSide?: (string | number)[] | {
|
|
48611
49116
|
pins: (string | number)[];
|
|
48612
49117
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
48613
49118
|
} | undefined;
|
|
@@ -49694,19 +50199,19 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49694
50199
|
topSize?: number | undefined;
|
|
49695
50200
|
rightSize?: number | undefined;
|
|
49696
50201
|
bottomSize?: number | undefined;
|
|
49697
|
-
leftSide?: {
|
|
50202
|
+
leftSide?: (string | number)[] | {
|
|
49698
50203
|
pins: (string | number)[];
|
|
49699
50204
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49700
50205
|
} | undefined;
|
|
49701
|
-
topSide?: {
|
|
50206
|
+
topSide?: (string | number)[] | {
|
|
49702
50207
|
pins: (string | number)[];
|
|
49703
50208
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49704
50209
|
} | undefined;
|
|
49705
|
-
rightSide?: {
|
|
50210
|
+
rightSide?: (string | number)[] | {
|
|
49706
50211
|
pins: (string | number)[];
|
|
49707
50212
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49708
50213
|
} | undefined;
|
|
49709
|
-
bottomSide?: {
|
|
50214
|
+
bottomSide?: (string | number)[] | {
|
|
49710
50215
|
pins: (string | number)[];
|
|
49711
50216
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49712
50217
|
} | undefined;
|
|
@@ -49736,19 +50241,19 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49736
50241
|
topSize?: number | undefined;
|
|
49737
50242
|
rightSize?: number | undefined;
|
|
49738
50243
|
bottomSize?: number | undefined;
|
|
49739
|
-
leftSide?: {
|
|
50244
|
+
leftSide?: (string | number)[] | {
|
|
49740
50245
|
pins: (string | number)[];
|
|
49741
50246
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49742
50247
|
} | undefined;
|
|
49743
|
-
topSide?: {
|
|
50248
|
+
topSide?: (string | number)[] | {
|
|
49744
50249
|
pins: (string | number)[];
|
|
49745
50250
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49746
50251
|
} | undefined;
|
|
49747
|
-
rightSide?: {
|
|
50252
|
+
rightSide?: (string | number)[] | {
|
|
49748
50253
|
pins: (string | number)[];
|
|
49749
50254
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49750
50255
|
} | undefined;
|
|
49751
|
-
bottomSide?: {
|
|
50256
|
+
bottomSide?: (string | number)[] | {
|
|
49752
50257
|
pins: (string | number)[];
|
|
49753
50258
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
49754
50259
|
} | undefined;
|
|
@@ -52887,7 +53392,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
52887
53392
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
52888
53393
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
52889
53394
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
52890
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
53395
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
52891
53396
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
52892
53397
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
52893
53398
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -52896,8 +53401,14 @@ declare const connectorProps: z.ZodObject<{
|
|
|
52896
53401
|
}, {
|
|
52897
53402
|
pins: (string | number)[];
|
|
52898
53403
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
53404
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
53405
|
+
pins: (string | number)[];
|
|
53406
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
53407
|
+
}, (string | number)[] | {
|
|
53408
|
+
pins: (string | number)[];
|
|
53409
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
52899
53410
|
}>>;
|
|
52900
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
53411
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
52901
53412
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
52902
53413
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
52903
53414
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -52906,8 +53417,14 @@ declare const connectorProps: z.ZodObject<{
|
|
|
52906
53417
|
}, {
|
|
52907
53418
|
pins: (string | number)[];
|
|
52908
53419
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
53420
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
53421
|
+
pins: (string | number)[];
|
|
53422
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
53423
|
+
}, (string | number)[] | {
|
|
53424
|
+
pins: (string | number)[];
|
|
53425
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
52909
53426
|
}>>;
|
|
52910
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
53427
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
52911
53428
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
52912
53429
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
52913
53430
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -52916,8 +53433,14 @@ declare const connectorProps: z.ZodObject<{
|
|
|
52916
53433
|
}, {
|
|
52917
53434
|
pins: (string | number)[];
|
|
52918
53435
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
53436
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
53437
|
+
pins: (string | number)[];
|
|
53438
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
53439
|
+
}, (string | number)[] | {
|
|
53440
|
+
pins: (string | number)[];
|
|
53441
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
52919
53442
|
}>>;
|
|
52920
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
53443
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
52921
53444
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
52922
53445
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
52923
53446
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -52926,6 +53449,12 @@ declare const connectorProps: z.ZodObject<{
|
|
|
52926
53449
|
}, {
|
|
52927
53450
|
pins: (string | number)[];
|
|
52928
53451
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
53452
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
53453
|
+
pins: (string | number)[];
|
|
53454
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
53455
|
+
}, (string | number)[] | {
|
|
53456
|
+
pins: (string | number)[];
|
|
53457
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
52929
53458
|
}>>;
|
|
52930
53459
|
}, "strip", z.ZodTypeAny, {
|
|
52931
53460
|
leftSize?: number | undefined;
|
|
@@ -52957,19 +53486,19 @@ declare const connectorProps: z.ZodObject<{
|
|
|
52957
53486
|
topSize?: number | undefined;
|
|
52958
53487
|
rightSize?: number | undefined;
|
|
52959
53488
|
bottomSize?: number | undefined;
|
|
52960
|
-
leftSide?: {
|
|
53489
|
+
leftSide?: (string | number)[] | {
|
|
52961
53490
|
pins: (string | number)[];
|
|
52962
53491
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
52963
53492
|
} | undefined;
|
|
52964
|
-
topSide?: {
|
|
53493
|
+
topSide?: (string | number)[] | {
|
|
52965
53494
|
pins: (string | number)[];
|
|
52966
53495
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
52967
53496
|
} | undefined;
|
|
52968
|
-
rightSide?: {
|
|
53497
|
+
rightSide?: (string | number)[] | {
|
|
52969
53498
|
pins: (string | number)[];
|
|
52970
53499
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
52971
53500
|
} | undefined;
|
|
52972
|
-
bottomSide?: {
|
|
53501
|
+
bottomSide?: (string | number)[] | {
|
|
52973
53502
|
pins: (string | number)[];
|
|
52974
53503
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
52975
53504
|
} | undefined;
|
|
@@ -54035,19 +54564,19 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54035
54564
|
topSize?: number | undefined;
|
|
54036
54565
|
rightSize?: number | undefined;
|
|
54037
54566
|
bottomSize?: number | undefined;
|
|
54038
|
-
leftSide?: {
|
|
54567
|
+
leftSide?: (string | number)[] | {
|
|
54039
54568
|
pins: (string | number)[];
|
|
54040
54569
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
54041
54570
|
} | undefined;
|
|
54042
|
-
topSide?: {
|
|
54571
|
+
topSide?: (string | number)[] | {
|
|
54043
54572
|
pins: (string | number)[];
|
|
54044
54573
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
54045
54574
|
} | undefined;
|
|
54046
|
-
rightSide?: {
|
|
54575
|
+
rightSide?: (string | number)[] | {
|
|
54047
54576
|
pins: (string | number)[];
|
|
54048
54577
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
54049
54578
|
} | undefined;
|
|
54050
|
-
bottomSide?: {
|
|
54579
|
+
bottomSide?: (string | number)[] | {
|
|
54051
54580
|
pins: (string | number)[];
|
|
54052
54581
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
54053
54582
|
} | undefined;
|
|
@@ -80577,7 +81106,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
80577
81106
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
80578
81107
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
80579
81108
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
80580
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
81109
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
80581
81110
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
80582
81111
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
80583
81112
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -80586,8 +81115,14 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
80586
81115
|
}, {
|
|
80587
81116
|
pins: (string | number)[];
|
|
80588
81117
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81118
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
81119
|
+
pins: (string | number)[];
|
|
81120
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81121
|
+
}, (string | number)[] | {
|
|
81122
|
+
pins: (string | number)[];
|
|
81123
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80589
81124
|
}>>;
|
|
80590
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
81125
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
80591
81126
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
80592
81127
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
80593
81128
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -80596,8 +81131,14 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
80596
81131
|
}, {
|
|
80597
81132
|
pins: (string | number)[];
|
|
80598
81133
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81134
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
81135
|
+
pins: (string | number)[];
|
|
81136
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81137
|
+
}, (string | number)[] | {
|
|
81138
|
+
pins: (string | number)[];
|
|
81139
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80599
81140
|
}>>;
|
|
80600
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
81141
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
80601
81142
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
80602
81143
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
80603
81144
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -80606,8 +81147,14 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
80606
81147
|
}, {
|
|
80607
81148
|
pins: (string | number)[];
|
|
80608
81149
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81150
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
81151
|
+
pins: (string | number)[];
|
|
81152
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81153
|
+
}, (string | number)[] | {
|
|
81154
|
+
pins: (string | number)[];
|
|
81155
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80609
81156
|
}>>;
|
|
80610
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
81157
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
80611
81158
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
80612
81159
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
80613
81160
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -80616,6 +81163,12 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
80616
81163
|
}, {
|
|
80617
81164
|
pins: (string | number)[];
|
|
80618
81165
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81166
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
81167
|
+
pins: (string | number)[];
|
|
81168
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81169
|
+
}, (string | number)[] | {
|
|
81170
|
+
pins: (string | number)[];
|
|
81171
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80619
81172
|
}>>;
|
|
80620
81173
|
}, "strip", z.ZodTypeAny, {
|
|
80621
81174
|
leftSize?: number | undefined;
|
|
@@ -80647,19 +81200,19 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
80647
81200
|
topSize?: number | undefined;
|
|
80648
81201
|
rightSize?: number | undefined;
|
|
80649
81202
|
bottomSize?: number | undefined;
|
|
80650
|
-
leftSide?: {
|
|
81203
|
+
leftSide?: (string | number)[] | {
|
|
80651
81204
|
pins: (string | number)[];
|
|
80652
81205
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80653
81206
|
} | undefined;
|
|
80654
|
-
topSide?: {
|
|
81207
|
+
topSide?: (string | number)[] | {
|
|
80655
81208
|
pins: (string | number)[];
|
|
80656
81209
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80657
81210
|
} | undefined;
|
|
80658
|
-
rightSide?: {
|
|
81211
|
+
rightSide?: (string | number)[] | {
|
|
80659
81212
|
pins: (string | number)[];
|
|
80660
81213
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80661
81214
|
} | undefined;
|
|
80662
|
-
bottomSide?: {
|
|
81215
|
+
bottomSide?: (string | number)[] | {
|
|
80663
81216
|
pins: (string | number)[];
|
|
80664
81217
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80665
81218
|
} | undefined;
|
|
@@ -81361,19 +81914,19 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
81361
81914
|
topSize?: number | undefined;
|
|
81362
81915
|
rightSize?: number | undefined;
|
|
81363
81916
|
bottomSize?: number | undefined;
|
|
81364
|
-
leftSide?: {
|
|
81917
|
+
leftSide?: (string | number)[] | {
|
|
81365
81918
|
pins: (string | number)[];
|
|
81366
81919
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81367
81920
|
} | undefined;
|
|
81368
|
-
topSide?: {
|
|
81921
|
+
topSide?: (string | number)[] | {
|
|
81369
81922
|
pins: (string | number)[];
|
|
81370
81923
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81371
81924
|
} | undefined;
|
|
81372
|
-
rightSide?: {
|
|
81925
|
+
rightSide?: (string | number)[] | {
|
|
81373
81926
|
pins: (string | number)[];
|
|
81374
81927
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81375
81928
|
} | undefined;
|
|
81376
|
-
bottomSide?: {
|
|
81929
|
+
bottomSide?: (string | number)[] | {
|
|
81377
81930
|
pins: (string | number)[];
|
|
81378
81931
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81379
81932
|
} | undefined;
|
|
@@ -101221,7 +101774,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
101221
101774
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
101222
101775
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
101223
101776
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
101224
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
101777
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
101225
101778
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
101226
101779
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
101227
101780
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -101230,8 +101783,14 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
101230
101783
|
}, {
|
|
101231
101784
|
pins: (string | number)[];
|
|
101232
101785
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101786
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
101787
|
+
pins: (string | number)[];
|
|
101788
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101789
|
+
}, (string | number)[] | {
|
|
101790
|
+
pins: (string | number)[];
|
|
101791
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101233
101792
|
}>>;
|
|
101234
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
101793
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
101235
101794
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
101236
101795
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
101237
101796
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -101240,8 +101799,14 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
101240
101799
|
}, {
|
|
101241
101800
|
pins: (string | number)[];
|
|
101242
101801
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101802
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
101803
|
+
pins: (string | number)[];
|
|
101804
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101805
|
+
}, (string | number)[] | {
|
|
101806
|
+
pins: (string | number)[];
|
|
101807
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101243
101808
|
}>>;
|
|
101244
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
101809
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
101245
101810
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
101246
101811
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
101247
101812
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -101250,8 +101815,14 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
101250
101815
|
}, {
|
|
101251
101816
|
pins: (string | number)[];
|
|
101252
101817
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101818
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
101819
|
+
pins: (string | number)[];
|
|
101820
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101821
|
+
}, (string | number)[] | {
|
|
101822
|
+
pins: (string | number)[];
|
|
101823
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101253
101824
|
}>>;
|
|
101254
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
101825
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
101255
101826
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
101256
101827
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
101257
101828
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -101260,6 +101831,12 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
101260
101831
|
}, {
|
|
101261
101832
|
pins: (string | number)[];
|
|
101262
101833
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101834
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
101835
|
+
pins: (string | number)[];
|
|
101836
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101837
|
+
}, (string | number)[] | {
|
|
101838
|
+
pins: (string | number)[];
|
|
101839
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101263
101840
|
}>>;
|
|
101264
101841
|
}, "strip", z.ZodTypeAny, {
|
|
101265
101842
|
leftSize?: number | undefined;
|
|
@@ -101291,19 +101868,19 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
101291
101868
|
topSize?: number | undefined;
|
|
101292
101869
|
rightSize?: number | undefined;
|
|
101293
101870
|
bottomSize?: number | undefined;
|
|
101294
|
-
leftSide?: {
|
|
101871
|
+
leftSide?: (string | number)[] | {
|
|
101295
101872
|
pins: (string | number)[];
|
|
101296
101873
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101297
101874
|
} | undefined;
|
|
101298
|
-
topSide?: {
|
|
101875
|
+
topSide?: (string | number)[] | {
|
|
101299
101876
|
pins: (string | number)[];
|
|
101300
101877
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101301
101878
|
} | undefined;
|
|
101302
|
-
rightSide?: {
|
|
101879
|
+
rightSide?: (string | number)[] | {
|
|
101303
101880
|
pins: (string | number)[];
|
|
101304
101881
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101305
101882
|
} | undefined;
|
|
101306
|
-
bottomSide?: {
|
|
101883
|
+
bottomSide?: (string | number)[] | {
|
|
101307
101884
|
pins: (string | number)[];
|
|
101308
101885
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101309
101886
|
} | undefined;
|
|
@@ -102395,19 +102972,19 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
102395
102972
|
topSize?: number | undefined;
|
|
102396
102973
|
rightSize?: number | undefined;
|
|
102397
102974
|
bottomSize?: number | undefined;
|
|
102398
|
-
leftSide?: {
|
|
102975
|
+
leftSide?: (string | number)[] | {
|
|
102399
102976
|
pins: (string | number)[];
|
|
102400
102977
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
102401
102978
|
} | undefined;
|
|
102402
|
-
topSide?: {
|
|
102979
|
+
topSide?: (string | number)[] | {
|
|
102403
102980
|
pins: (string | number)[];
|
|
102404
102981
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
102405
102982
|
} | undefined;
|
|
102406
|
-
rightSide?: {
|
|
102983
|
+
rightSide?: (string | number)[] | {
|
|
102407
102984
|
pins: (string | number)[];
|
|
102408
102985
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
102409
102986
|
} | undefined;
|
|
102410
|
-
bottomSide?: {
|
|
102987
|
+
bottomSide?: (string | number)[] | {
|
|
102411
102988
|
pins: (string | number)[];
|
|
102412
102989
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
102413
102990
|
} | undefined;
|
|
@@ -105591,7 +106168,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105591
106168
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
105592
106169
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
105593
106170
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
105594
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
106171
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
105595
106172
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
105596
106173
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
105597
106174
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -105600,8 +106177,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105600
106177
|
}, {
|
|
105601
106178
|
pins: (string | number)[];
|
|
105602
106179
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106180
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
106181
|
+
pins: (string | number)[];
|
|
106182
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106183
|
+
}, (string | number)[] | {
|
|
106184
|
+
pins: (string | number)[];
|
|
106185
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105603
106186
|
}>>;
|
|
105604
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
106187
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
105605
106188
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
105606
106189
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
105607
106190
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -105610,8 +106193,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105610
106193
|
}, {
|
|
105611
106194
|
pins: (string | number)[];
|
|
105612
106195
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106196
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
106197
|
+
pins: (string | number)[];
|
|
106198
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106199
|
+
}, (string | number)[] | {
|
|
106200
|
+
pins: (string | number)[];
|
|
106201
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105613
106202
|
}>>;
|
|
105614
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
106203
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
105615
106204
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
105616
106205
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
105617
106206
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -105620,8 +106209,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105620
106209
|
}, {
|
|
105621
106210
|
pins: (string | number)[];
|
|
105622
106211
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106212
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
106213
|
+
pins: (string | number)[];
|
|
106214
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106215
|
+
}, (string | number)[] | {
|
|
106216
|
+
pins: (string | number)[];
|
|
106217
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105623
106218
|
}>>;
|
|
105624
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
106219
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
105625
106220
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
105626
106221
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
105627
106222
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -105630,6 +106225,12 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105630
106225
|
}, {
|
|
105631
106226
|
pins: (string | number)[];
|
|
105632
106227
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106228
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
106229
|
+
pins: (string | number)[];
|
|
106230
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106231
|
+
}, (string | number)[] | {
|
|
106232
|
+
pins: (string | number)[];
|
|
106233
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105633
106234
|
}>>;
|
|
105634
106235
|
}, "strip", z.ZodTypeAny, {
|
|
105635
106236
|
leftSize?: number | undefined;
|
|
@@ -105661,19 +106262,19 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105661
106262
|
topSize?: number | undefined;
|
|
105662
106263
|
rightSize?: number | undefined;
|
|
105663
106264
|
bottomSize?: number | undefined;
|
|
105664
|
-
leftSide?: {
|
|
106265
|
+
leftSide?: (string | number)[] | {
|
|
105665
106266
|
pins: (string | number)[];
|
|
105666
106267
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105667
106268
|
} | undefined;
|
|
105668
|
-
topSide?: {
|
|
106269
|
+
topSide?: (string | number)[] | {
|
|
105669
106270
|
pins: (string | number)[];
|
|
105670
106271
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105671
106272
|
} | undefined;
|
|
105672
|
-
rightSide?: {
|
|
106273
|
+
rightSide?: (string | number)[] | {
|
|
105673
106274
|
pins: (string | number)[];
|
|
105674
106275
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105675
106276
|
} | undefined;
|
|
105676
|
-
bottomSide?: {
|
|
106277
|
+
bottomSide?: (string | number)[] | {
|
|
105677
106278
|
pins: (string | number)[];
|
|
105678
106279
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105679
106280
|
} | undefined;
|
|
@@ -105691,7 +106292,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105691
106292
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
105692
106293
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
105693
106294
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
105694
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
106295
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
105695
106296
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
105696
106297
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
105697
106298
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -105700,8 +106301,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105700
106301
|
}, {
|
|
105701
106302
|
pins: (string | number)[];
|
|
105702
106303
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106304
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
106305
|
+
pins: (string | number)[];
|
|
106306
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106307
|
+
}, (string | number)[] | {
|
|
106308
|
+
pins: (string | number)[];
|
|
106309
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105703
106310
|
}>>;
|
|
105704
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
106311
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
105705
106312
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
105706
106313
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
105707
106314
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -105710,8 +106317,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105710
106317
|
}, {
|
|
105711
106318
|
pins: (string | number)[];
|
|
105712
106319
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106320
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
106321
|
+
pins: (string | number)[];
|
|
106322
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106323
|
+
}, (string | number)[] | {
|
|
106324
|
+
pins: (string | number)[];
|
|
106325
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105713
106326
|
}>>;
|
|
105714
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
106327
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
105715
106328
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
105716
106329
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
105717
106330
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -105720,8 +106333,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105720
106333
|
}, {
|
|
105721
106334
|
pins: (string | number)[];
|
|
105722
106335
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106336
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
106337
|
+
pins: (string | number)[];
|
|
106338
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106339
|
+
}, (string | number)[] | {
|
|
106340
|
+
pins: (string | number)[];
|
|
106341
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105723
106342
|
}>>;
|
|
105724
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
106343
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
105725
106344
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
105726
106345
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
105727
106346
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -105730,6 +106349,12 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105730
106349
|
}, {
|
|
105731
106350
|
pins: (string | number)[];
|
|
105732
106351
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106352
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
106353
|
+
pins: (string | number)[];
|
|
106354
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106355
|
+
}, (string | number)[] | {
|
|
106356
|
+
pins: (string | number)[];
|
|
106357
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105733
106358
|
}>>;
|
|
105734
106359
|
}, "strip", z.ZodTypeAny, {
|
|
105735
106360
|
leftSize?: number | undefined;
|
|
@@ -105761,19 +106386,19 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105761
106386
|
topSize?: number | undefined;
|
|
105762
106387
|
rightSize?: number | undefined;
|
|
105763
106388
|
bottomSize?: number | undefined;
|
|
105764
|
-
leftSide?: {
|
|
106389
|
+
leftSide?: (string | number)[] | {
|
|
105765
106390
|
pins: (string | number)[];
|
|
105766
106391
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105767
106392
|
} | undefined;
|
|
105768
|
-
topSide?: {
|
|
106393
|
+
topSide?: (string | number)[] | {
|
|
105769
106394
|
pins: (string | number)[];
|
|
105770
106395
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105771
106396
|
} | undefined;
|
|
105772
|
-
rightSide?: {
|
|
106397
|
+
rightSide?: (string | number)[] | {
|
|
105773
106398
|
pins: (string | number)[];
|
|
105774
106399
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105775
106400
|
} | undefined;
|
|
105776
|
-
bottomSide?: {
|
|
106401
|
+
bottomSide?: (string | number)[] | {
|
|
105777
106402
|
pins: (string | number)[];
|
|
105778
106403
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
105779
106404
|
} | undefined;
|
|
@@ -106899,19 +107524,19 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
106899
107524
|
topSize?: number | undefined;
|
|
106900
107525
|
rightSize?: number | undefined;
|
|
106901
107526
|
bottomSize?: number | undefined;
|
|
106902
|
-
leftSide?: {
|
|
107527
|
+
leftSide?: (string | number)[] | {
|
|
106903
107528
|
pins: (string | number)[];
|
|
106904
107529
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106905
107530
|
} | undefined;
|
|
106906
|
-
topSide?: {
|
|
107531
|
+
topSide?: (string | number)[] | {
|
|
106907
107532
|
pins: (string | number)[];
|
|
106908
107533
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106909
107534
|
} | undefined;
|
|
106910
|
-
rightSide?: {
|
|
107535
|
+
rightSide?: (string | number)[] | {
|
|
106911
107536
|
pins: (string | number)[];
|
|
106912
107537
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106913
107538
|
} | undefined;
|
|
106914
|
-
bottomSide?: {
|
|
107539
|
+
bottomSide?: (string | number)[] | {
|
|
106915
107540
|
pins: (string | number)[];
|
|
106916
107541
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106917
107542
|
} | undefined;
|
|
@@ -106943,19 +107568,19 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
106943
107568
|
topSize?: number | undefined;
|
|
106944
107569
|
rightSize?: number | undefined;
|
|
106945
107570
|
bottomSize?: number | undefined;
|
|
106946
|
-
leftSide?: {
|
|
107571
|
+
leftSide?: (string | number)[] | {
|
|
106947
107572
|
pins: (string | number)[];
|
|
106948
107573
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106949
107574
|
} | undefined;
|
|
106950
|
-
topSide?: {
|
|
107575
|
+
topSide?: (string | number)[] | {
|
|
106951
107576
|
pins: (string | number)[];
|
|
106952
107577
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106953
107578
|
} | undefined;
|
|
106954
|
-
rightSide?: {
|
|
107579
|
+
rightSide?: (string | number)[] | {
|
|
106955
107580
|
pins: (string | number)[];
|
|
106956
107581
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106957
107582
|
} | undefined;
|
|
106958
|
-
bottomSide?: {
|
|
107583
|
+
bottomSide?: (string | number)[] | {
|
|
106959
107584
|
pins: (string | number)[];
|
|
106960
107585
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
106961
107586
|
} | undefined;
|
|
@@ -107381,7 +108006,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
107381
108006
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
107382
108007
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
107383
108008
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
107384
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
108009
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
107385
108010
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
107386
108011
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
107387
108012
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -107390,8 +108015,14 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
107390
108015
|
}, {
|
|
107391
108016
|
pins: (string | number)[];
|
|
107392
108017
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108018
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
108019
|
+
pins: (string | number)[];
|
|
108020
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108021
|
+
}, (string | number)[] | {
|
|
108022
|
+
pins: (string | number)[];
|
|
108023
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
107393
108024
|
}>>;
|
|
107394
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
108025
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
107395
108026
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
107396
108027
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
107397
108028
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -107400,8 +108031,14 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
107400
108031
|
}, {
|
|
107401
108032
|
pins: (string | number)[];
|
|
107402
108033
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108034
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
108035
|
+
pins: (string | number)[];
|
|
108036
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108037
|
+
}, (string | number)[] | {
|
|
108038
|
+
pins: (string | number)[];
|
|
108039
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
107403
108040
|
}>>;
|
|
107404
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
108041
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
107405
108042
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
107406
108043
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
107407
108044
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -107410,8 +108047,14 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
107410
108047
|
}, {
|
|
107411
108048
|
pins: (string | number)[];
|
|
107412
108049
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108050
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
108051
|
+
pins: (string | number)[];
|
|
108052
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108053
|
+
}, (string | number)[] | {
|
|
108054
|
+
pins: (string | number)[];
|
|
108055
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
107413
108056
|
}>>;
|
|
107414
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
108057
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
107415
108058
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
107416
108059
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
107417
108060
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -107420,6 +108063,12 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
107420
108063
|
}, {
|
|
107421
108064
|
pins: (string | number)[];
|
|
107422
108065
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108066
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
108067
|
+
pins: (string | number)[];
|
|
108068
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108069
|
+
}, (string | number)[] | {
|
|
108070
|
+
pins: (string | number)[];
|
|
108071
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
107423
108072
|
}>>;
|
|
107424
108073
|
}, "strip", z.ZodTypeAny, {
|
|
107425
108074
|
leftSize?: number | undefined;
|
|
@@ -107451,19 +108100,19 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
107451
108100
|
topSize?: number | undefined;
|
|
107452
108101
|
rightSize?: number | undefined;
|
|
107453
108102
|
bottomSize?: number | undefined;
|
|
107454
|
-
leftSide?: {
|
|
108103
|
+
leftSide?: (string | number)[] | {
|
|
107455
108104
|
pins: (string | number)[];
|
|
107456
108105
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
107457
108106
|
} | undefined;
|
|
107458
|
-
topSide?: {
|
|
108107
|
+
topSide?: (string | number)[] | {
|
|
107459
108108
|
pins: (string | number)[];
|
|
107460
108109
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
107461
108110
|
} | undefined;
|
|
107462
|
-
rightSide?: {
|
|
108111
|
+
rightSide?: (string | number)[] | {
|
|
107463
108112
|
pins: (string | number)[];
|
|
107464
108113
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
107465
108114
|
} | undefined;
|
|
107466
|
-
bottomSide?: {
|
|
108115
|
+
bottomSide?: (string | number)[] | {
|
|
107467
108116
|
pins: (string | number)[];
|
|
107468
108117
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
107469
108118
|
} | undefined;
|
|
@@ -108095,19 +108744,19 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
108095
108744
|
topSize?: number | undefined;
|
|
108096
108745
|
rightSize?: number | undefined;
|
|
108097
108746
|
bottomSize?: number | undefined;
|
|
108098
|
-
leftSide?: {
|
|
108747
|
+
leftSide?: (string | number)[] | {
|
|
108099
108748
|
pins: (string | number)[];
|
|
108100
108749
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108101
108750
|
} | undefined;
|
|
108102
|
-
topSide?: {
|
|
108751
|
+
topSide?: (string | number)[] | {
|
|
108103
108752
|
pins: (string | number)[];
|
|
108104
108753
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108105
108754
|
} | undefined;
|
|
108106
|
-
rightSide?: {
|
|
108755
|
+
rightSide?: (string | number)[] | {
|
|
108107
108756
|
pins: (string | number)[];
|
|
108108
108757
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108109
108758
|
} | undefined;
|
|
108110
|
-
bottomSide?: {
|
|
108759
|
+
bottomSide?: (string | number)[] | {
|
|
108111
108760
|
pins: (string | number)[];
|
|
108112
108761
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
108113
108762
|
} | undefined;
|
|
@@ -165571,4 +166220,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
165571
166220
|
}
|
|
165572
166221
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
165573
166222
|
|
|
165574
|
-
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardOutlineProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardOutlineProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
166223
|
+
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardOutlineProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardOutlineProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|