@tscircuit/props 0.0.491 → 0.0.492
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 +276 -107
- package/dist/index.js +847 -863
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +1 -123
- package/lib/common/pinAttributeMap.ts +77 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6032,6 +6032,119 @@ declare const pcbSxValue: z.ZodObject<{
|
|
|
6032
6032
|
}>;
|
|
6033
6033
|
declare const pcbSx: z.ZodType<PcbSx>;
|
|
6034
6034
|
|
|
6035
|
+
declare const pinCapability: z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>;
|
|
6036
|
+
type PinCapability = z.input<typeof pinCapability>;
|
|
6037
|
+
interface PinAttributeMap {
|
|
6038
|
+
capabilities?: Array<PinCapability>;
|
|
6039
|
+
activeCapabilities?: Array<PinCapability>;
|
|
6040
|
+
activeCapability?: PinCapability;
|
|
6041
|
+
providesPower?: boolean;
|
|
6042
|
+
requiresPower?: boolean;
|
|
6043
|
+
providesGround?: boolean;
|
|
6044
|
+
requiresGround?: boolean;
|
|
6045
|
+
providesVoltage?: string | number;
|
|
6046
|
+
requiresVoltage?: string | number;
|
|
6047
|
+
doNotConnect?: boolean;
|
|
6048
|
+
includeInBoardPinout?: boolean;
|
|
6049
|
+
highlightColor?: string;
|
|
6050
|
+
mustBeConnected?: boolean;
|
|
6051
|
+
canUseInternalPullup?: boolean;
|
|
6052
|
+
isUsingInternalPullup?: boolean;
|
|
6053
|
+
needsExternalPullup?: boolean;
|
|
6054
|
+
canUseInternalPulldown?: boolean;
|
|
6055
|
+
isUsingInternalPulldown?: boolean;
|
|
6056
|
+
needsExternalPulldown?: boolean;
|
|
6057
|
+
canUseOpenDrain?: boolean;
|
|
6058
|
+
isUsingOpenDrain?: boolean;
|
|
6059
|
+
canUsePushPull?: boolean;
|
|
6060
|
+
isUsingPushPull?: boolean;
|
|
6061
|
+
shouldHaveDecouplingCapacitor?: boolean;
|
|
6062
|
+
recommendedDecouplingCapacitorCapacitance?: string | number;
|
|
6063
|
+
isGpio?: boolean;
|
|
6064
|
+
}
|
|
6065
|
+
declare const pinAttributeMap: z.ZodObject<{
|
|
6066
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
6067
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
6068
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
6069
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
6070
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
6071
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
6072
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
6073
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6074
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6075
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
6076
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
6077
|
+
highlightColor: z.ZodOptional<z.ZodString>;
|
|
6078
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
6079
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6080
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6081
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6082
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6083
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6084
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6085
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6086
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6087
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6088
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6089
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
6090
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6091
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
6092
|
+
}, "strip", z.ZodTypeAny, {
|
|
6093
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6094
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6095
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
6096
|
+
providesPower?: boolean | undefined;
|
|
6097
|
+
requiresPower?: boolean | undefined;
|
|
6098
|
+
providesGround?: boolean | undefined;
|
|
6099
|
+
requiresGround?: boolean | undefined;
|
|
6100
|
+
providesVoltage?: string | number | undefined;
|
|
6101
|
+
requiresVoltage?: string | number | undefined;
|
|
6102
|
+
doNotConnect?: boolean | undefined;
|
|
6103
|
+
includeInBoardPinout?: boolean | undefined;
|
|
6104
|
+
highlightColor?: string | undefined;
|
|
6105
|
+
mustBeConnected?: boolean | undefined;
|
|
6106
|
+
canUseInternalPullup?: boolean | undefined;
|
|
6107
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
6108
|
+
needsExternalPullup?: boolean | undefined;
|
|
6109
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
6110
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
6111
|
+
needsExternalPulldown?: boolean | undefined;
|
|
6112
|
+
canUseOpenDrain?: boolean | undefined;
|
|
6113
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
6114
|
+
canUsePushPull?: boolean | undefined;
|
|
6115
|
+
isUsingPushPull?: boolean | undefined;
|
|
6116
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6117
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6118
|
+
isGpio?: boolean | undefined;
|
|
6119
|
+
}, {
|
|
6120
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6121
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6122
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
6123
|
+
providesPower?: boolean | undefined;
|
|
6124
|
+
requiresPower?: boolean | undefined;
|
|
6125
|
+
providesGround?: boolean | undefined;
|
|
6126
|
+
requiresGround?: boolean | undefined;
|
|
6127
|
+
providesVoltage?: string | number | undefined;
|
|
6128
|
+
requiresVoltage?: string | number | undefined;
|
|
6129
|
+
doNotConnect?: boolean | undefined;
|
|
6130
|
+
includeInBoardPinout?: boolean | undefined;
|
|
6131
|
+
highlightColor?: string | undefined;
|
|
6132
|
+
mustBeConnected?: boolean | undefined;
|
|
6133
|
+
canUseInternalPullup?: boolean | undefined;
|
|
6134
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
6135
|
+
needsExternalPullup?: boolean | undefined;
|
|
6136
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
6137
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
6138
|
+
needsExternalPulldown?: boolean | undefined;
|
|
6139
|
+
canUseOpenDrain?: boolean | undefined;
|
|
6140
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
6141
|
+
canUsePushPull?: boolean | undefined;
|
|
6142
|
+
isUsingPushPull?: boolean | undefined;
|
|
6143
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6144
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6145
|
+
isGpio?: boolean | undefined;
|
|
6146
|
+
}>;
|
|
6147
|
+
|
|
6035
6148
|
interface SchStyle {
|
|
6036
6149
|
defaultPassiveSize?: "xs" | "sm" | "md" | string | number;
|
|
6037
6150
|
defaultCapacitorOrientation?: "vertical" | "none";
|
|
@@ -6475,112 +6588,6 @@ declare const supplierProps: z.ZodObject<{
|
|
|
6475
6588
|
}, {
|
|
6476
6589
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6477
6590
|
}>;
|
|
6478
|
-
interface PinAttributeMap {
|
|
6479
|
-
capabilities?: Array<"i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx">;
|
|
6480
|
-
activeCapabilities?: Array<"i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx">;
|
|
6481
|
-
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx";
|
|
6482
|
-
providesPower?: boolean;
|
|
6483
|
-
requiresPower?: boolean;
|
|
6484
|
-
providesGround?: boolean;
|
|
6485
|
-
requiresGround?: boolean;
|
|
6486
|
-
providesVoltage?: string | number;
|
|
6487
|
-
requiresVoltage?: string | number;
|
|
6488
|
-
doNotConnect?: boolean;
|
|
6489
|
-
includeInBoardPinout?: boolean;
|
|
6490
|
-
highlightColor?: string;
|
|
6491
|
-
mustBeConnected?: boolean;
|
|
6492
|
-
canUseInternalPullup?: boolean;
|
|
6493
|
-
isUsingInternalPullup?: boolean;
|
|
6494
|
-
needsExternalPullup?: boolean;
|
|
6495
|
-
canUseInternalPulldown?: boolean;
|
|
6496
|
-
isUsingInternalPulldown?: boolean;
|
|
6497
|
-
needsExternalPulldown?: boolean;
|
|
6498
|
-
canUseOpenDrain?: boolean;
|
|
6499
|
-
isUsingOpenDrain?: boolean;
|
|
6500
|
-
canUsePushPull?: boolean;
|
|
6501
|
-
isUsingPushPull?: boolean;
|
|
6502
|
-
shouldHaveDecouplingCapacitor?: boolean;
|
|
6503
|
-
recommendedDecouplingCapacitorCapacitance?: string | number;
|
|
6504
|
-
}
|
|
6505
|
-
declare const pinAttributeMap: z.ZodObject<{
|
|
6506
|
-
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
6507
|
-
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
6508
|
-
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
6509
|
-
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
6510
|
-
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
6511
|
-
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
6512
|
-
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
6513
|
-
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6514
|
-
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6515
|
-
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
6516
|
-
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
6517
|
-
highlightColor: z.ZodOptional<z.ZodString>;
|
|
6518
|
-
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
6519
|
-
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6520
|
-
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6521
|
-
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6522
|
-
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6523
|
-
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6524
|
-
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6525
|
-
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6526
|
-
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6527
|
-
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6528
|
-
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6529
|
-
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
6530
|
-
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6531
|
-
}, "strip", z.ZodTypeAny, {
|
|
6532
|
-
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6533
|
-
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6534
|
-
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
6535
|
-
providesPower?: boolean | undefined;
|
|
6536
|
-
requiresPower?: boolean | undefined;
|
|
6537
|
-
providesGround?: boolean | undefined;
|
|
6538
|
-
requiresGround?: boolean | undefined;
|
|
6539
|
-
providesVoltage?: string | number | undefined;
|
|
6540
|
-
requiresVoltage?: string | number | undefined;
|
|
6541
|
-
doNotConnect?: boolean | undefined;
|
|
6542
|
-
includeInBoardPinout?: boolean | undefined;
|
|
6543
|
-
highlightColor?: string | undefined;
|
|
6544
|
-
mustBeConnected?: boolean | undefined;
|
|
6545
|
-
canUseInternalPullup?: boolean | undefined;
|
|
6546
|
-
isUsingInternalPullup?: boolean | undefined;
|
|
6547
|
-
needsExternalPullup?: boolean | undefined;
|
|
6548
|
-
canUseInternalPulldown?: boolean | undefined;
|
|
6549
|
-
isUsingInternalPulldown?: boolean | undefined;
|
|
6550
|
-
needsExternalPulldown?: boolean | undefined;
|
|
6551
|
-
canUseOpenDrain?: boolean | undefined;
|
|
6552
|
-
isUsingOpenDrain?: boolean | undefined;
|
|
6553
|
-
canUsePushPull?: boolean | undefined;
|
|
6554
|
-
isUsingPushPull?: boolean | undefined;
|
|
6555
|
-
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6556
|
-
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6557
|
-
}, {
|
|
6558
|
-
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6559
|
-
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6560
|
-
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
6561
|
-
providesPower?: boolean | undefined;
|
|
6562
|
-
requiresPower?: boolean | undefined;
|
|
6563
|
-
providesGround?: boolean | undefined;
|
|
6564
|
-
requiresGround?: boolean | undefined;
|
|
6565
|
-
providesVoltage?: string | number | undefined;
|
|
6566
|
-
requiresVoltage?: string | number | undefined;
|
|
6567
|
-
doNotConnect?: boolean | undefined;
|
|
6568
|
-
includeInBoardPinout?: boolean | undefined;
|
|
6569
|
-
highlightColor?: string | undefined;
|
|
6570
|
-
mustBeConnected?: boolean | undefined;
|
|
6571
|
-
canUseInternalPullup?: boolean | undefined;
|
|
6572
|
-
isUsingInternalPullup?: boolean | undefined;
|
|
6573
|
-
needsExternalPullup?: boolean | undefined;
|
|
6574
|
-
canUseInternalPulldown?: boolean | undefined;
|
|
6575
|
-
isUsingInternalPulldown?: boolean | undefined;
|
|
6576
|
-
needsExternalPulldown?: boolean | undefined;
|
|
6577
|
-
canUseOpenDrain?: boolean | undefined;
|
|
6578
|
-
isUsingOpenDrain?: boolean | undefined;
|
|
6579
|
-
canUsePushPull?: boolean | undefined;
|
|
6580
|
-
isUsingPushPull?: boolean | undefined;
|
|
6581
|
-
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6582
|
-
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6583
|
-
}>;
|
|
6584
6591
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
6585
6592
|
key?: any;
|
|
6586
6593
|
name: string;
|
|
@@ -9689,6 +9696,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9689
9696
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
9690
9697
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
9691
9698
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
9699
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
9692
9700
|
}, "strip", z.ZodTypeAny, {
|
|
9693
9701
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9694
9702
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -9715,6 +9723,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9715
9723
|
isUsingPushPull?: boolean | undefined;
|
|
9716
9724
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9717
9725
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9726
|
+
isGpio?: boolean | undefined;
|
|
9718
9727
|
}, {
|
|
9719
9728
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9720
9729
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -9741,6 +9750,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9741
9750
|
isUsingPushPull?: boolean | undefined;
|
|
9742
9751
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9743
9752
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9753
|
+
isGpio?: boolean | undefined;
|
|
9744
9754
|
}>>>;
|
|
9745
9755
|
mfn: z.ZodOptional<z.ZodString>;
|
|
9746
9756
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -9826,6 +9836,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9826
9836
|
isUsingPushPull?: boolean | undefined;
|
|
9827
9837
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9828
9838
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9839
|
+
isGpio?: boolean | undefined;
|
|
9829
9840
|
}> | undefined;
|
|
9830
9841
|
cadModel?: string | {
|
|
9831
9842
|
stlUrl: string;
|
|
@@ -10348,6 +10359,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10348
10359
|
isUsingPushPull?: boolean | undefined;
|
|
10349
10360
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
10350
10361
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
10362
|
+
isGpio?: boolean | undefined;
|
|
10351
10363
|
}> | undefined;
|
|
10352
10364
|
cadModel?: string | {
|
|
10353
10365
|
stlUrl: string;
|
|
@@ -13865,6 +13877,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13865
13877
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
13866
13878
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
13867
13879
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13880
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
13868
13881
|
}, "strip", z.ZodTypeAny, {
|
|
13869
13882
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13870
13883
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -13891,6 +13904,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13891
13904
|
isUsingPushPull?: boolean | undefined;
|
|
13892
13905
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
13893
13906
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
13907
|
+
isGpio?: boolean | undefined;
|
|
13894
13908
|
}, {
|
|
13895
13909
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13896
13910
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -13917,6 +13931,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13917
13931
|
isUsingPushPull?: boolean | undefined;
|
|
13918
13932
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
13919
13933
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
13934
|
+
isGpio?: boolean | undefined;
|
|
13920
13935
|
}>>>;
|
|
13921
13936
|
mfn: z.ZodOptional<z.ZodString>;
|
|
13922
13937
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -14002,6 +14017,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14002
14017
|
isUsingPushPull?: boolean | undefined;
|
|
14003
14018
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
14004
14019
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
14020
|
+
isGpio?: boolean | undefined;
|
|
14005
14021
|
}> | undefined;
|
|
14006
14022
|
cadModel?: string | {
|
|
14007
14023
|
stlUrl: string;
|
|
@@ -14524,6 +14540,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14524
14540
|
isUsingPushPull?: boolean | undefined;
|
|
14525
14541
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
14526
14542
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
14543
|
+
isGpio?: boolean | undefined;
|
|
14527
14544
|
}> | undefined;
|
|
14528
14545
|
cadModel?: string | {
|
|
14529
14546
|
stlUrl: string;
|
|
@@ -31278,6 +31295,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31278
31295
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31279
31296
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
31280
31297
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31298
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
31281
31299
|
}, "strip", z.ZodTypeAny, {
|
|
31282
31300
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31283
31301
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -31304,6 +31322,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31304
31322
|
isUsingPushPull?: boolean | undefined;
|
|
31305
31323
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31306
31324
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31325
|
+
isGpio?: boolean | undefined;
|
|
31307
31326
|
}, {
|
|
31308
31327
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31309
31328
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -31330,6 +31349,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31330
31349
|
isUsingPushPull?: boolean | undefined;
|
|
31331
31350
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31332
31351
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31352
|
+
isGpio?: boolean | undefined;
|
|
31333
31353
|
}>>>;
|
|
31334
31354
|
mfn: z.ZodOptional<z.ZodString>;
|
|
31335
31355
|
} & {
|
|
@@ -31712,6 +31732,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31712
31732
|
isUsingPushPull?: boolean | undefined;
|
|
31713
31733
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31714
31734
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31735
|
+
isGpio?: boolean | undefined;
|
|
31715
31736
|
}> | undefined;
|
|
31716
31737
|
cadModel?: string | {
|
|
31717
31738
|
stlUrl: string;
|
|
@@ -32310,6 +32331,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
32310
32331
|
isUsingPushPull?: boolean | undefined;
|
|
32311
32332
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
32312
32333
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
32334
|
+
isGpio?: boolean | undefined;
|
|
32313
32335
|
}> | undefined;
|
|
32314
32336
|
cadModel?: string | {
|
|
32315
32337
|
stlUrl: string;
|
|
@@ -35904,6 +35926,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35904
35926
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35905
35927
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
35906
35928
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
35929
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
35907
35930
|
}, "strip", z.ZodTypeAny, {
|
|
35908
35931
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35909
35932
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -35930,6 +35953,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35930
35953
|
isUsingPushPull?: boolean | undefined;
|
|
35931
35954
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
35932
35955
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
35956
|
+
isGpio?: boolean | undefined;
|
|
35933
35957
|
}, {
|
|
35934
35958
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35935
35959
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -35956,6 +35980,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35956
35980
|
isUsingPushPull?: boolean | undefined;
|
|
35957
35981
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
35958
35982
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
35983
|
+
isGpio?: boolean | undefined;
|
|
35959
35984
|
}>>>;
|
|
35960
35985
|
mfn: z.ZodOptional<z.ZodString>;
|
|
35961
35986
|
} & {
|
|
@@ -36338,6 +36363,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36338
36363
|
isUsingPushPull?: boolean | undefined;
|
|
36339
36364
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
36340
36365
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
36366
|
+
isGpio?: boolean | undefined;
|
|
36341
36367
|
}> | undefined;
|
|
36342
36368
|
cadModel?: string | {
|
|
36343
36369
|
stlUrl: string;
|
|
@@ -36936,6 +36962,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36936
36962
|
isUsingPushPull?: boolean | undefined;
|
|
36937
36963
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
36938
36964
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
36965
|
+
isGpio?: boolean | undefined;
|
|
36939
36966
|
}> | undefined;
|
|
36940
36967
|
cadModel?: string | {
|
|
36941
36968
|
stlUrl: string;
|
|
@@ -40529,6 +40556,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40529
40556
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40530
40557
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
40531
40558
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
40559
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
40532
40560
|
}, "strip", z.ZodTypeAny, {
|
|
40533
40561
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40534
40562
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -40555,6 +40583,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40555
40583
|
isUsingPushPull?: boolean | undefined;
|
|
40556
40584
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40557
40585
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40586
|
+
isGpio?: boolean | undefined;
|
|
40558
40587
|
}, {
|
|
40559
40588
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40560
40589
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -40581,6 +40610,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40581
40610
|
isUsingPushPull?: boolean | undefined;
|
|
40582
40611
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40583
40612
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40613
|
+
isGpio?: boolean | undefined;
|
|
40584
40614
|
}>>>;
|
|
40585
40615
|
mfn: z.ZodOptional<z.ZodString>;
|
|
40586
40616
|
} & {
|
|
@@ -40963,6 +40993,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40963
40993
|
isUsingPushPull?: boolean | undefined;
|
|
40964
40994
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40965
40995
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40996
|
+
isGpio?: boolean | undefined;
|
|
40966
40997
|
}> | undefined;
|
|
40967
40998
|
cadModel?: string | {
|
|
40968
40999
|
stlUrl: string;
|
|
@@ -41561,6 +41592,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41561
41592
|
isUsingPushPull?: boolean | undefined;
|
|
41562
41593
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
41563
41594
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
41595
|
+
isGpio?: boolean | undefined;
|
|
41564
41596
|
}> | undefined;
|
|
41565
41597
|
cadModel?: string | {
|
|
41566
41598
|
stlUrl: string;
|
|
@@ -45186,6 +45218,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45186
45218
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45187
45219
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
45188
45220
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
45221
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
45189
45222
|
}, "strip", z.ZodTypeAny, {
|
|
45190
45223
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45191
45224
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -45212,6 +45245,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45212
45245
|
isUsingPushPull?: boolean | undefined;
|
|
45213
45246
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45214
45247
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45248
|
+
isGpio?: boolean | undefined;
|
|
45215
45249
|
}, {
|
|
45216
45250
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45217
45251
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -45238,6 +45272,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45238
45272
|
isUsingPushPull?: boolean | undefined;
|
|
45239
45273
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45240
45274
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45275
|
+
isGpio?: boolean | undefined;
|
|
45241
45276
|
}>>>;
|
|
45242
45277
|
mfn: z.ZodOptional<z.ZodString>;
|
|
45243
45278
|
} & {
|
|
@@ -45609,6 +45644,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45609
45644
|
isUsingPushPull?: boolean | undefined;
|
|
45610
45645
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45611
45646
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45647
|
+
isGpio?: boolean | undefined;
|
|
45612
45648
|
}> | undefined;
|
|
45613
45649
|
cadModel?: string | {
|
|
45614
45650
|
stlUrl: string;
|
|
@@ -46202,6 +46238,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
46202
46238
|
isUsingPushPull?: boolean | undefined;
|
|
46203
46239
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
46204
46240
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
46241
|
+
isGpio?: boolean | undefined;
|
|
46205
46242
|
}> | undefined;
|
|
46206
46243
|
cadModel?: string | {
|
|
46207
46244
|
stlUrl: string;
|
|
@@ -49799,6 +49836,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49799
49836
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49800
49837
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
49801
49838
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
49839
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
49802
49840
|
}, "strip", z.ZodTypeAny, {
|
|
49803
49841
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49804
49842
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -49825,6 +49863,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49825
49863
|
isUsingPushPull?: boolean | undefined;
|
|
49826
49864
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
49827
49865
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49866
|
+
isGpio?: boolean | undefined;
|
|
49828
49867
|
}, {
|
|
49829
49868
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49830
49869
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -49851,6 +49890,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49851
49890
|
isUsingPushPull?: boolean | undefined;
|
|
49852
49891
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
49853
49892
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49893
|
+
isGpio?: boolean | undefined;
|
|
49854
49894
|
}>>>;
|
|
49855
49895
|
mfn: z.ZodOptional<z.ZodString>;
|
|
49856
49896
|
} & {
|
|
@@ -50225,6 +50265,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50225
50265
|
isUsingPushPull?: boolean | undefined;
|
|
50226
50266
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
50227
50267
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
50268
|
+
isGpio?: boolean | undefined;
|
|
50228
50269
|
}> | undefined;
|
|
50229
50270
|
cadModel?: string | {
|
|
50230
50271
|
stlUrl: string;
|
|
@@ -50820,6 +50861,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50820
50861
|
isUsingPushPull?: boolean | undefined;
|
|
50821
50862
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
50822
50863
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
50864
|
+
isGpio?: boolean | undefined;
|
|
50823
50865
|
}> | undefined;
|
|
50824
50866
|
cadModel?: string | {
|
|
50825
50867
|
stlUrl: string;
|
|
@@ -54428,6 +54470,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54428
54470
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54429
54471
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
54430
54472
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
54473
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
54431
54474
|
}, "strip", z.ZodTypeAny, {
|
|
54432
54475
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54433
54476
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -54454,6 +54497,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54454
54497
|
isUsingPushPull?: boolean | undefined;
|
|
54455
54498
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54456
54499
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54500
|
+
isGpio?: boolean | undefined;
|
|
54457
54501
|
}, {
|
|
54458
54502
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54459
54503
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -54480,6 +54524,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54480
54524
|
isUsingPushPull?: boolean | undefined;
|
|
54481
54525
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54482
54526
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54527
|
+
isGpio?: boolean | undefined;
|
|
54483
54528
|
}>>>;
|
|
54484
54529
|
mfn: z.ZodOptional<z.ZodString>;
|
|
54485
54530
|
} & {
|
|
@@ -54725,6 +54770,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54725
54770
|
isUsingPushPull?: boolean | undefined;
|
|
54726
54771
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54727
54772
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54773
|
+
isGpio?: boolean | undefined;
|
|
54728
54774
|
}> | undefined;
|
|
54729
54775
|
cadModel?: string | {
|
|
54730
54776
|
stlUrl: string;
|
|
@@ -55290,6 +55336,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
55290
55336
|
isUsingPushPull?: boolean | undefined;
|
|
55291
55337
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
55292
55338
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
55339
|
+
isGpio?: boolean | undefined;
|
|
55293
55340
|
}> | undefined;
|
|
55294
55341
|
cadModel?: string | {
|
|
55295
55342
|
stlUrl: string;
|
|
@@ -58860,6 +58907,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58860
58907
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58861
58908
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
58862
58909
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
58910
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
58863
58911
|
}, "strip", z.ZodTypeAny, {
|
|
58864
58912
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58865
58913
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -58886,6 +58934,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58886
58934
|
isUsingPushPull?: boolean | undefined;
|
|
58887
58935
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58888
58936
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58937
|
+
isGpio?: boolean | undefined;
|
|
58889
58938
|
}, {
|
|
58890
58939
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58891
58940
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -58912,6 +58961,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58912
58961
|
isUsingPushPull?: boolean | undefined;
|
|
58913
58962
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58914
58963
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58964
|
+
isGpio?: boolean | undefined;
|
|
58915
58965
|
}>>>;
|
|
58916
58966
|
mfn: z.ZodOptional<z.ZodString>;
|
|
58917
58967
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -59001,6 +59051,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59001
59051
|
isUsingPushPull?: boolean | undefined;
|
|
59002
59052
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
59003
59053
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
59054
|
+
isGpio?: boolean | undefined;
|
|
59004
59055
|
}> | undefined;
|
|
59005
59056
|
cadModel?: string | {
|
|
59006
59057
|
stlUrl: string;
|
|
@@ -59526,6 +59577,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59526
59577
|
isUsingPushPull?: boolean | undefined;
|
|
59527
59578
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
59528
59579
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
59580
|
+
isGpio?: boolean | undefined;
|
|
59529
59581
|
}> | undefined;
|
|
59530
59582
|
cadModel?: string | {
|
|
59531
59583
|
stlUrl: string;
|
|
@@ -63074,6 +63126,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63074
63126
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
63075
63127
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
63076
63128
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
63129
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
63077
63130
|
}, "strip", z.ZodTypeAny, {
|
|
63078
63131
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
63079
63132
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -63100,6 +63153,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63100
63153
|
isUsingPushPull?: boolean | undefined;
|
|
63101
63154
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63102
63155
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63156
|
+
isGpio?: boolean | undefined;
|
|
63103
63157
|
}, {
|
|
63104
63158
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
63105
63159
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -63126,6 +63180,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63126
63180
|
isUsingPushPull?: boolean | undefined;
|
|
63127
63181
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63128
63182
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63183
|
+
isGpio?: boolean | undefined;
|
|
63129
63184
|
}>>>;
|
|
63130
63185
|
mfn: z.ZodOptional<z.ZodString>;
|
|
63131
63186
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -63218,6 +63273,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63218
63273
|
isUsingPushPull?: boolean | undefined;
|
|
63219
63274
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63220
63275
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63276
|
+
isGpio?: boolean | undefined;
|
|
63221
63277
|
}> | undefined;
|
|
63222
63278
|
cadModel?: string | {
|
|
63223
63279
|
stlUrl: string;
|
|
@@ -63745,6 +63801,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63745
63801
|
isUsingPushPull?: boolean | undefined;
|
|
63746
63802
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63747
63803
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63804
|
+
isGpio?: boolean | undefined;
|
|
63748
63805
|
}> | undefined;
|
|
63749
63806
|
cadModel?: string | {
|
|
63750
63807
|
stlUrl: string;
|
|
@@ -69209,6 +69266,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69209
69266
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
69210
69267
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
69211
69268
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
69269
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
69212
69270
|
}, "strip", z.ZodTypeAny, {
|
|
69213
69271
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
69214
69272
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -69235,6 +69293,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69235
69293
|
isUsingPushPull?: boolean | undefined;
|
|
69236
69294
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69237
69295
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69296
|
+
isGpio?: boolean | undefined;
|
|
69238
69297
|
}, {
|
|
69239
69298
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
69240
69299
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -69261,6 +69320,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69261
69320
|
isUsingPushPull?: boolean | undefined;
|
|
69262
69321
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69263
69322
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69323
|
+
isGpio?: boolean | undefined;
|
|
69264
69324
|
}>>>;
|
|
69265
69325
|
mfn: z.ZodOptional<z.ZodString>;
|
|
69266
69326
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -69357,6 +69417,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69357
69417
|
isUsingPushPull?: boolean | undefined;
|
|
69358
69418
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69359
69419
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69420
|
+
isGpio?: boolean | undefined;
|
|
69360
69421
|
}> | undefined;
|
|
69361
69422
|
cadModel?: string | {
|
|
69362
69423
|
stlUrl: string;
|
|
@@ -69888,6 +69949,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69888
69949
|
isUsingPushPull?: boolean | undefined;
|
|
69889
69950
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69890
69951
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69952
|
+
isGpio?: boolean | undefined;
|
|
69891
69953
|
}> | undefined;
|
|
69892
69954
|
cadModel?: string | {
|
|
69893
69955
|
stlUrl: string;
|
|
@@ -73423,6 +73485,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73423
73485
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
73424
73486
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
73425
73487
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
73488
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
73426
73489
|
}, "strip", z.ZodTypeAny, {
|
|
73427
73490
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73428
73491
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -73449,6 +73512,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73449
73512
|
isUsingPushPull?: boolean | undefined;
|
|
73450
73513
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73451
73514
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73515
|
+
isGpio?: boolean | undefined;
|
|
73452
73516
|
}, {
|
|
73453
73517
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73454
73518
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -73475,6 +73539,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73475
73539
|
isUsingPushPull?: boolean | undefined;
|
|
73476
73540
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73477
73541
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73542
|
+
isGpio?: boolean | undefined;
|
|
73478
73543
|
}>>>;
|
|
73479
73544
|
mfn: z.ZodOptional<z.ZodString>;
|
|
73480
73545
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -73565,6 +73630,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73565
73630
|
isUsingPushPull?: boolean | undefined;
|
|
73566
73631
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73567
73632
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73633
|
+
isGpio?: boolean | undefined;
|
|
73568
73634
|
}> | undefined;
|
|
73569
73635
|
cadModel?: string | {
|
|
73570
73636
|
stlUrl: string;
|
|
@@ -74090,6 +74156,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
74090
74156
|
isUsingPushPull?: boolean | undefined;
|
|
74091
74157
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
74092
74158
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
74159
|
+
isGpio?: boolean | undefined;
|
|
74093
74160
|
}> | undefined;
|
|
74094
74161
|
cadModel?: string | {
|
|
74095
74162
|
stlUrl: string;
|
|
@@ -77620,6 +77687,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77620
77687
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77621
77688
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
77622
77689
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
77690
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
77623
77691
|
}, "strip", z.ZodTypeAny, {
|
|
77624
77692
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77625
77693
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -77646,6 +77714,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77646
77714
|
isUsingPushPull?: boolean | undefined;
|
|
77647
77715
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77648
77716
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77717
|
+
isGpio?: boolean | undefined;
|
|
77649
77718
|
}, {
|
|
77650
77719
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77651
77720
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -77672,6 +77741,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77672
77741
|
isUsingPushPull?: boolean | undefined;
|
|
77673
77742
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77674
77743
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77744
|
+
isGpio?: boolean | undefined;
|
|
77675
77745
|
}>>>;
|
|
77676
77746
|
mfn: z.ZodOptional<z.ZodString>;
|
|
77677
77747
|
} & {
|
|
@@ -77766,6 +77836,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77766
77836
|
isUsingPushPull?: boolean | undefined;
|
|
77767
77837
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77768
77838
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77839
|
+
isGpio?: boolean | undefined;
|
|
77769
77840
|
}> | undefined;
|
|
77770
77841
|
cadModel?: string | {
|
|
77771
77842
|
stlUrl: string;
|
|
@@ -78294,6 +78365,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
78294
78365
|
isUsingPushPull?: boolean | undefined;
|
|
78295
78366
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
78296
78367
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
78368
|
+
isGpio?: boolean | undefined;
|
|
78297
78369
|
}> | undefined;
|
|
78298
78370
|
cadModel?: string | {
|
|
78299
78371
|
stlUrl: string;
|
|
@@ -81822,6 +81894,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81822
81894
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81823
81895
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
81824
81896
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
81897
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
81825
81898
|
}, "strip", z.ZodTypeAny, {
|
|
81826
81899
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81827
81900
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -81848,6 +81921,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81848
81921
|
isUsingPushPull?: boolean | undefined;
|
|
81849
81922
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81850
81923
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81924
|
+
isGpio?: boolean | undefined;
|
|
81851
81925
|
}, {
|
|
81852
81926
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81853
81927
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -81874,6 +81948,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81874
81948
|
isUsingPushPull?: boolean | undefined;
|
|
81875
81949
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81876
81950
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81951
|
+
isGpio?: boolean | undefined;
|
|
81877
81952
|
}>>>;
|
|
81878
81953
|
mfn: z.ZodOptional<z.ZodString>;
|
|
81879
81954
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -81965,6 +82040,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81965
82040
|
isUsingPushPull?: boolean | undefined;
|
|
81966
82041
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81967
82042
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
82043
|
+
isGpio?: boolean | undefined;
|
|
81968
82044
|
}> | undefined;
|
|
81969
82045
|
cadModel?: string | {
|
|
81970
82046
|
stlUrl: string;
|
|
@@ -82490,6 +82566,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
82490
82566
|
isUsingPushPull?: boolean | undefined;
|
|
82491
82567
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
82492
82568
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
82569
|
+
isGpio?: boolean | undefined;
|
|
82493
82570
|
}> | undefined;
|
|
82494
82571
|
cadModel?: string | {
|
|
82495
82572
|
stlUrl: string;
|
|
@@ -87504,6 +87581,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87504
87581
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
87505
87582
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
87506
87583
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
87584
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
87507
87585
|
}, "strip", z.ZodTypeAny, {
|
|
87508
87586
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87509
87587
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -87530,6 +87608,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87530
87608
|
isUsingPushPull?: boolean | undefined;
|
|
87531
87609
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87532
87610
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87611
|
+
isGpio?: boolean | undefined;
|
|
87533
87612
|
}, {
|
|
87534
87613
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87535
87614
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -87556,6 +87635,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87556
87635
|
isUsingPushPull?: boolean | undefined;
|
|
87557
87636
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87558
87637
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87638
|
+
isGpio?: boolean | undefined;
|
|
87559
87639
|
}>>>;
|
|
87560
87640
|
mfn: z.ZodOptional<z.ZodString>;
|
|
87561
87641
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -87657,6 +87737,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87657
87737
|
isUsingPushPull?: boolean | undefined;
|
|
87658
87738
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87659
87739
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87740
|
+
isGpio?: boolean | undefined;
|
|
87660
87741
|
}> | undefined;
|
|
87661
87742
|
cadModel?: string | {
|
|
87662
87743
|
stlUrl: string;
|
|
@@ -88189,6 +88270,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
88189
88270
|
isUsingPushPull?: boolean | undefined;
|
|
88190
88271
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
88191
88272
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
88273
|
+
isGpio?: boolean | undefined;
|
|
88192
88274
|
}> | undefined;
|
|
88193
88275
|
cadModel?: string | {
|
|
88194
88276
|
stlUrl: string;
|
|
@@ -91750,6 +91832,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91750
91832
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91751
91833
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
91752
91834
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
91835
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
91753
91836
|
}, "strip", z.ZodTypeAny, {
|
|
91754
91837
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91755
91838
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -91776,6 +91859,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91776
91859
|
isUsingPushPull?: boolean | undefined;
|
|
91777
91860
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91778
91861
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91862
|
+
isGpio?: boolean | undefined;
|
|
91779
91863
|
}, {
|
|
91780
91864
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91781
91865
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -91802,6 +91886,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91802
91886
|
isUsingPushPull?: boolean | undefined;
|
|
91803
91887
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91804
91888
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91889
|
+
isGpio?: boolean | undefined;
|
|
91805
91890
|
}>>>;
|
|
91806
91891
|
mfn: z.ZodOptional<z.ZodString>;
|
|
91807
91892
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -91890,6 +91975,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91890
91975
|
isUsingPushPull?: boolean | undefined;
|
|
91891
91976
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91892
91977
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91978
|
+
isGpio?: boolean | undefined;
|
|
91893
91979
|
}> | undefined;
|
|
91894
91980
|
cadModel?: string | {
|
|
91895
91981
|
stlUrl: string;
|
|
@@ -92414,6 +92500,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
92414
92500
|
isUsingPushPull?: boolean | undefined;
|
|
92415
92501
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
92416
92502
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
92503
|
+
isGpio?: boolean | undefined;
|
|
92417
92504
|
}> | undefined;
|
|
92418
92505
|
cadModel?: string | {
|
|
92419
92506
|
stlUrl: string;
|
|
@@ -100477,6 +100564,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100477
100564
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
100478
100565
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
100479
100566
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
100567
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
100480
100568
|
}, "strip", z.ZodTypeAny, {
|
|
100481
100569
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100482
100570
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -100503,6 +100591,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100503
100591
|
isUsingPushPull?: boolean | undefined;
|
|
100504
100592
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100505
100593
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100594
|
+
isGpio?: boolean | undefined;
|
|
100506
100595
|
}, {
|
|
100507
100596
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100508
100597
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -100529,6 +100618,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100529
100618
|
isUsingPushPull?: boolean | undefined;
|
|
100530
100619
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100531
100620
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100621
|
+
isGpio?: boolean | undefined;
|
|
100532
100622
|
}>>>;
|
|
100533
100623
|
mfn: z.ZodOptional<z.ZodString>;
|
|
100534
100624
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -100619,6 +100709,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100619
100709
|
isUsingPushPull?: boolean | undefined;
|
|
100620
100710
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100621
100711
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100712
|
+
isGpio?: boolean | undefined;
|
|
100622
100713
|
}> | undefined;
|
|
100623
100714
|
cadModel?: string | {
|
|
100624
100715
|
stlUrl: string;
|
|
@@ -101145,6 +101236,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
101145
101236
|
isUsingPushPull?: boolean | undefined;
|
|
101146
101237
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
101147
101238
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
101239
|
+
isGpio?: boolean | undefined;
|
|
101148
101240
|
}> | undefined;
|
|
101149
101241
|
cadModel?: string | {
|
|
101150
101242
|
stlUrl: string;
|
|
@@ -106350,6 +106442,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106350
106442
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
106351
106443
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
106352
106444
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
106445
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
106353
106446
|
}, "strip", z.ZodTypeAny, {
|
|
106354
106447
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106355
106448
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -106376,6 +106469,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106376
106469
|
isUsingPushPull?: boolean | undefined;
|
|
106377
106470
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106378
106471
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106472
|
+
isGpio?: boolean | undefined;
|
|
106379
106473
|
}, {
|
|
106380
106474
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106381
106475
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -106402,6 +106496,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106402
106496
|
isUsingPushPull?: boolean | undefined;
|
|
106403
106497
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106404
106498
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106499
|
+
isGpio?: boolean | undefined;
|
|
106405
106500
|
}>>>;
|
|
106406
106501
|
mfn: z.ZodOptional<z.ZodString>;
|
|
106407
106502
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -106659,6 +106754,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106659
106754
|
isUsingPushPull?: boolean | undefined;
|
|
106660
106755
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106661
106756
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106757
|
+
isGpio?: boolean | undefined;
|
|
106662
106758
|
}> | undefined;
|
|
106663
106759
|
cadModel?: string | {
|
|
106664
106760
|
stlUrl: string;
|
|
@@ -107233,6 +107329,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
107233
107329
|
isUsingPushPull?: boolean | undefined;
|
|
107234
107330
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
107235
107331
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
107332
|
+
isGpio?: boolean | undefined;
|
|
107236
107333
|
}> | undefined;
|
|
107237
107334
|
cadModel?: string | {
|
|
107238
107335
|
stlUrl: string;
|
|
@@ -110872,6 +110969,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110872
110969
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110873
110970
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
110874
110971
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
110972
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
110875
110973
|
}, "strip", z.ZodTypeAny, {
|
|
110876
110974
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110877
110975
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -110898,6 +110996,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110898
110996
|
isUsingPushPull?: boolean | undefined;
|
|
110899
110997
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
110900
110998
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110999
|
+
isGpio?: boolean | undefined;
|
|
110901
111000
|
}, {
|
|
110902
111001
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110903
111002
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -110924,6 +111023,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110924
111023
|
isUsingPushPull?: boolean | undefined;
|
|
110925
111024
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
110926
111025
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
111026
|
+
isGpio?: boolean | undefined;
|
|
110927
111027
|
}>>>;
|
|
110928
111028
|
mfn: z.ZodOptional<z.ZodString>;
|
|
110929
111029
|
} & {
|
|
@@ -111306,6 +111406,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111306
111406
|
isUsingPushPull?: boolean | undefined;
|
|
111307
111407
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
111308
111408
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
111409
|
+
isGpio?: boolean | undefined;
|
|
111309
111410
|
}> | undefined;
|
|
111310
111411
|
cadModel?: string | {
|
|
111311
111412
|
stlUrl: string;
|
|
@@ -111904,6 +112005,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111904
112005
|
isUsingPushPull?: boolean | undefined;
|
|
111905
112006
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
111906
112007
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
112008
|
+
isGpio?: boolean | undefined;
|
|
111907
112009
|
}> | undefined;
|
|
111908
112010
|
cadModel?: string | {
|
|
111909
112011
|
stlUrl: string;
|
|
@@ -116902,6 +117004,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116902
117004
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116903
117005
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
116904
117006
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
117007
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
116905
117008
|
}, "strip", z.ZodTypeAny, {
|
|
116906
117009
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116907
117010
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -116928,6 +117031,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116928
117031
|
isUsingPushPull?: boolean | undefined;
|
|
116929
117032
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116930
117033
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
117034
|
+
isGpio?: boolean | undefined;
|
|
116931
117035
|
}, {
|
|
116932
117036
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116933
117037
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -116954,6 +117058,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116954
117058
|
isUsingPushPull?: boolean | undefined;
|
|
116955
117059
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116956
117060
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
117061
|
+
isGpio?: boolean | undefined;
|
|
116957
117062
|
}>>>;
|
|
116958
117063
|
mfn: z.ZodOptional<z.ZodString>;
|
|
116959
117064
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -117043,6 +117148,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
117043
117148
|
isUsingPushPull?: boolean | undefined;
|
|
117044
117149
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
117045
117150
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
117151
|
+
isGpio?: boolean | undefined;
|
|
117046
117152
|
}> | undefined;
|
|
117047
117153
|
cadModel?: string | {
|
|
117048
117154
|
stlUrl: string;
|
|
@@ -117567,6 +117673,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
117567
117673
|
isUsingPushPull?: boolean | undefined;
|
|
117568
117674
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
117569
117675
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
117676
|
+
isGpio?: boolean | undefined;
|
|
117570
117677
|
}> | undefined;
|
|
117571
117678
|
cadModel?: string | {
|
|
117572
117679
|
stlUrl: string;
|
|
@@ -121092,6 +121199,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121092
121199
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
121093
121200
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
121094
121201
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
121202
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
121095
121203
|
}, "strip", z.ZodTypeAny, {
|
|
121096
121204
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121097
121205
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -121118,6 +121226,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121118
121226
|
isUsingPushPull?: boolean | undefined;
|
|
121119
121227
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
121120
121228
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121229
|
+
isGpio?: boolean | undefined;
|
|
121121
121230
|
}, {
|
|
121122
121231
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121123
121232
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -121144,6 +121253,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121144
121253
|
isUsingPushPull?: boolean | undefined;
|
|
121145
121254
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
121146
121255
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121256
|
+
isGpio?: boolean | undefined;
|
|
121147
121257
|
}>>>;
|
|
121148
121258
|
mfn: z.ZodOptional<z.ZodString>;
|
|
121149
121259
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -121234,6 +121344,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121234
121344
|
isUsingPushPull?: boolean | undefined;
|
|
121235
121345
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
121236
121346
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121347
|
+
isGpio?: boolean | undefined;
|
|
121237
121348
|
}> | undefined;
|
|
121238
121349
|
cadModel?: string | {
|
|
121239
121350
|
stlUrl: string;
|
|
@@ -121758,6 +121869,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121758
121869
|
isUsingPushPull?: boolean | undefined;
|
|
121759
121870
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
121760
121871
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121872
|
+
isGpio?: boolean | undefined;
|
|
121761
121873
|
}> | undefined;
|
|
121762
121874
|
cadModel?: string | {
|
|
121763
121875
|
stlUrl: string;
|
|
@@ -125289,6 +125401,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125289
125401
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
125290
125402
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
125291
125403
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
125404
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
125292
125405
|
}, "strip", z.ZodTypeAny, {
|
|
125293
125406
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
125294
125407
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -125315,6 +125428,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125315
125428
|
isUsingPushPull?: boolean | undefined;
|
|
125316
125429
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125317
125430
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
125431
|
+
isGpio?: boolean | undefined;
|
|
125318
125432
|
}, {
|
|
125319
125433
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
125320
125434
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -125341,6 +125455,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125341
125455
|
isUsingPushPull?: boolean | undefined;
|
|
125342
125456
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125343
125457
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
125458
|
+
isGpio?: boolean | undefined;
|
|
125344
125459
|
}>>>;
|
|
125345
125460
|
mfn: z.ZodOptional<z.ZodString>;
|
|
125346
125461
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -125428,6 +125543,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125428
125543
|
isUsingPushPull?: boolean | undefined;
|
|
125429
125544
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125430
125545
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
125546
|
+
isGpio?: boolean | undefined;
|
|
125431
125547
|
}> | undefined;
|
|
125432
125548
|
cadModel?: string | {
|
|
125433
125549
|
stlUrl: string;
|
|
@@ -125951,6 +126067,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125951
126067
|
isUsingPushPull?: boolean | undefined;
|
|
125952
126068
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125953
126069
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
126070
|
+
isGpio?: boolean | undefined;
|
|
125954
126071
|
}> | undefined;
|
|
125955
126072
|
cadModel?: string | {
|
|
125956
126073
|
stlUrl: string;
|
|
@@ -129483,6 +129600,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129483
129600
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
129484
129601
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
129485
129602
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
129603
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
129486
129604
|
}, "strip", z.ZodTypeAny, {
|
|
129487
129605
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
129488
129606
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -129509,6 +129627,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129509
129627
|
isUsingPushPull?: boolean | undefined;
|
|
129510
129628
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129511
129629
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129630
|
+
isGpio?: boolean | undefined;
|
|
129512
129631
|
}, {
|
|
129513
129632
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
129514
129633
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -129535,6 +129654,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129535
129654
|
isUsingPushPull?: boolean | undefined;
|
|
129536
129655
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129537
129656
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129657
|
+
isGpio?: boolean | undefined;
|
|
129538
129658
|
}>>>;
|
|
129539
129659
|
mfn: z.ZodOptional<z.ZodString>;
|
|
129540
129660
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -129626,6 +129746,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129626
129746
|
isUsingPushPull?: boolean | undefined;
|
|
129627
129747
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129628
129748
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129749
|
+
isGpio?: boolean | undefined;
|
|
129629
129750
|
}> | undefined;
|
|
129630
129751
|
cadModel?: string | {
|
|
129631
129752
|
stlUrl: string;
|
|
@@ -130152,6 +130273,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
130152
130273
|
isUsingPushPull?: boolean | undefined;
|
|
130153
130274
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
130154
130275
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
130276
|
+
isGpio?: boolean | undefined;
|
|
130155
130277
|
}> | undefined;
|
|
130156
130278
|
cadModel?: string | {
|
|
130157
130279
|
stlUrl: string;
|
|
@@ -133673,6 +133795,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133673
133795
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
133674
133796
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
133675
133797
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
133798
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
133676
133799
|
}, "strip", z.ZodTypeAny, {
|
|
133677
133800
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133678
133801
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -133699,6 +133822,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133699
133822
|
isUsingPushPull?: boolean | undefined;
|
|
133700
133823
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133701
133824
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133825
|
+
isGpio?: boolean | undefined;
|
|
133702
133826
|
}, {
|
|
133703
133827
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133704
133828
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -133725,6 +133849,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133725
133849
|
isUsingPushPull?: boolean | undefined;
|
|
133726
133850
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133727
133851
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133852
|
+
isGpio?: boolean | undefined;
|
|
133728
133853
|
}>>>;
|
|
133729
133854
|
mfn: z.ZodOptional<z.ZodString>;
|
|
133730
133855
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -133821,6 +133946,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133821
133946
|
isUsingPushPull?: boolean | undefined;
|
|
133822
133947
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133823
133948
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133949
|
+
isGpio?: boolean | undefined;
|
|
133824
133950
|
}> | undefined;
|
|
133825
133951
|
cadModel?: string | {
|
|
133826
133952
|
stlUrl: string;
|
|
@@ -134351,6 +134477,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134351
134477
|
isUsingPushPull?: boolean | undefined;
|
|
134352
134478
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
134353
134479
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134480
|
+
isGpio?: boolean | undefined;
|
|
134354
134481
|
}> | undefined;
|
|
134355
134482
|
cadModel?: string | {
|
|
134356
134483
|
stlUrl: string;
|
|
@@ -134881,6 +135008,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134881
135008
|
isUsingPushPull?: boolean | undefined;
|
|
134882
135009
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
134883
135010
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
135011
|
+
isGpio?: boolean | undefined;
|
|
134884
135012
|
}> | undefined;
|
|
134885
135013
|
cadModel?: string | {
|
|
134886
135014
|
stlUrl: string;
|
|
@@ -135411,6 +135539,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135411
135539
|
isUsingPushPull?: boolean | undefined;
|
|
135412
135540
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
135413
135541
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
135542
|
+
isGpio?: boolean | undefined;
|
|
135414
135543
|
}> | undefined;
|
|
135415
135544
|
cadModel?: string | {
|
|
135416
135545
|
stlUrl: string;
|
|
@@ -135947,6 +136076,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135947
136076
|
isUsingPushPull?: boolean | undefined;
|
|
135948
136077
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
135949
136078
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
136079
|
+
isGpio?: boolean | undefined;
|
|
135950
136080
|
}> | undefined;
|
|
135951
136081
|
cadModel?: string | {
|
|
135952
136082
|
stlUrl: string;
|
|
@@ -136471,6 +136601,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
136471
136601
|
isUsingPushPull?: boolean | undefined;
|
|
136472
136602
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
136473
136603
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
136604
|
+
isGpio?: boolean | undefined;
|
|
136474
136605
|
}> | undefined;
|
|
136475
136606
|
cadModel?: string | {
|
|
136476
136607
|
stlUrl: string;
|
|
@@ -140020,6 +140151,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
140020
140151
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
140021
140152
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
140022
140153
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
140154
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
140023
140155
|
}, "strip", z.ZodTypeAny, {
|
|
140024
140156
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
140025
140157
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -140046,6 +140178,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
140046
140178
|
isUsingPushPull?: boolean | undefined;
|
|
140047
140179
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
140048
140180
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
140181
|
+
isGpio?: boolean | undefined;
|
|
140049
140182
|
}, {
|
|
140050
140183
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
140051
140184
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -140072,6 +140205,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
140072
140205
|
isUsingPushPull?: boolean | undefined;
|
|
140073
140206
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
140074
140207
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
140208
|
+
isGpio?: boolean | undefined;
|
|
140075
140209
|
}>>>;
|
|
140076
140210
|
mfn: z.ZodOptional<z.ZodString>;
|
|
140077
140211
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -140164,6 +140298,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
140164
140298
|
isUsingPushPull?: boolean | undefined;
|
|
140165
140299
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
140166
140300
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
140301
|
+
isGpio?: boolean | undefined;
|
|
140167
140302
|
}> | undefined;
|
|
140168
140303
|
cadModel?: string | {
|
|
140169
140304
|
stlUrl: string;
|
|
@@ -140692,6 +140827,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
140692
140827
|
isUsingPushPull?: boolean | undefined;
|
|
140693
140828
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
140694
140829
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
140830
|
+
isGpio?: boolean | undefined;
|
|
140695
140831
|
}> | undefined;
|
|
140696
140832
|
cadModel?: string | {
|
|
140697
140833
|
stlUrl: string;
|
|
@@ -144232,6 +144368,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144232
144368
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
144233
144369
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
144234
144370
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
144371
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
144235
144372
|
}, "strip", z.ZodTypeAny, {
|
|
144236
144373
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144237
144374
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -144258,6 +144395,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144258
144395
|
isUsingPushPull?: boolean | undefined;
|
|
144259
144396
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144260
144397
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144398
|
+
isGpio?: boolean | undefined;
|
|
144261
144399
|
}, {
|
|
144262
144400
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144263
144401
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -144284,6 +144422,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144284
144422
|
isUsingPushPull?: boolean | undefined;
|
|
144285
144423
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144286
144424
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144425
|
+
isGpio?: boolean | undefined;
|
|
144287
144426
|
}>>>;
|
|
144288
144427
|
mfn: z.ZodOptional<z.ZodString>;
|
|
144289
144428
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -144384,6 +144523,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144384
144523
|
isUsingPushPull?: boolean | undefined;
|
|
144385
144524
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144386
144525
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144526
|
+
isGpio?: boolean | undefined;
|
|
144387
144527
|
}> | undefined;
|
|
144388
144528
|
cadModel?: string | {
|
|
144389
144529
|
stlUrl: string;
|
|
@@ -144917,6 +145057,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144917
145057
|
isUsingPushPull?: boolean | undefined;
|
|
144918
145058
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144919
145059
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
145060
|
+
isGpio?: boolean | undefined;
|
|
144920
145061
|
}> | undefined;
|
|
144921
145062
|
cadModel?: string | {
|
|
144922
145063
|
stlUrl: string;
|
|
@@ -145451,6 +145592,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
145451
145592
|
isUsingPushPull?: boolean | undefined;
|
|
145452
145593
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
145453
145594
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
145595
|
+
isGpio?: boolean | undefined;
|
|
145454
145596
|
}> | undefined;
|
|
145455
145597
|
cadModel?: string | {
|
|
145456
145598
|
stlUrl: string;
|
|
@@ -150003,6 +150145,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150003
150145
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
150004
150146
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
150005
150147
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
150148
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
150006
150149
|
}, "strip", z.ZodTypeAny, {
|
|
150007
150150
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
150008
150151
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -150029,6 +150172,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150029
150172
|
isUsingPushPull?: boolean | undefined;
|
|
150030
150173
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150031
150174
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150175
|
+
isGpio?: boolean | undefined;
|
|
150032
150176
|
}, {
|
|
150033
150177
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
150034
150178
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -150055,6 +150199,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150055
150199
|
isUsingPushPull?: boolean | undefined;
|
|
150056
150200
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150057
150201
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150202
|
+
isGpio?: boolean | undefined;
|
|
150058
150203
|
}>>>;
|
|
150059
150204
|
mfn: z.ZodOptional<z.ZodString>;
|
|
150060
150205
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -150155,6 +150300,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150155
150300
|
isUsingPushPull?: boolean | undefined;
|
|
150156
150301
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150157
150302
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150303
|
+
isGpio?: boolean | undefined;
|
|
150158
150304
|
}> | undefined;
|
|
150159
150305
|
cadModel?: string | {
|
|
150160
150306
|
stlUrl: string;
|
|
@@ -150685,6 +150831,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150685
150831
|
isUsingPushPull?: boolean | undefined;
|
|
150686
150832
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150687
150833
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150834
|
+
isGpio?: boolean | undefined;
|
|
150688
150835
|
}> | undefined;
|
|
150689
150836
|
cadModel?: string | {
|
|
150690
150837
|
stlUrl: string;
|
|
@@ -151215,6 +151362,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
151215
151362
|
isUsingPushPull?: boolean | undefined;
|
|
151216
151363
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
151217
151364
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
151365
|
+
isGpio?: boolean | undefined;
|
|
151218
151366
|
}> | undefined;
|
|
151219
151367
|
cadModel?: string | {
|
|
151220
151368
|
stlUrl: string;
|
|
@@ -151745,6 +151893,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
151745
151893
|
isUsingPushPull?: boolean | undefined;
|
|
151746
151894
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
151747
151895
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
151896
|
+
isGpio?: boolean | undefined;
|
|
151748
151897
|
}> | undefined;
|
|
151749
151898
|
cadModel?: string | {
|
|
151750
151899
|
stlUrl: string;
|
|
@@ -156521,6 +156670,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156521
156670
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
156522
156671
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
156523
156672
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
156673
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
156524
156674
|
}, "strip", z.ZodTypeAny, {
|
|
156525
156675
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156526
156676
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -156547,6 +156697,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156547
156697
|
isUsingPushPull?: boolean | undefined;
|
|
156548
156698
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156549
156699
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156700
|
+
isGpio?: boolean | undefined;
|
|
156550
156701
|
}, {
|
|
156551
156702
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156552
156703
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -156573,6 +156724,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156573
156724
|
isUsingPushPull?: boolean | undefined;
|
|
156574
156725
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156575
156726
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156727
|
+
isGpio?: boolean | undefined;
|
|
156576
156728
|
}>>>;
|
|
156577
156729
|
mfn: z.ZodOptional<z.ZodString>;
|
|
156578
156730
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -156661,6 +156813,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156661
156813
|
isUsingPushPull?: boolean | undefined;
|
|
156662
156814
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156663
156815
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156816
|
+
isGpio?: boolean | undefined;
|
|
156664
156817
|
}> | undefined;
|
|
156665
156818
|
cadModel?: string | {
|
|
156666
156819
|
stlUrl: string;
|
|
@@ -157184,6 +157337,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
157184
157337
|
isUsingPushPull?: boolean | undefined;
|
|
157185
157338
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
157186
157339
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
157340
|
+
isGpio?: boolean | undefined;
|
|
157187
157341
|
}> | undefined;
|
|
157188
157342
|
cadModel?: string | {
|
|
157189
157343
|
stlUrl: string;
|
|
@@ -160715,6 +160869,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160715
160869
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
160716
160870
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
160717
160871
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
160872
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
160718
160873
|
}, "strip", z.ZodTypeAny, {
|
|
160719
160874
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
160720
160875
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -160741,6 +160896,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160741
160896
|
isUsingPushPull?: boolean | undefined;
|
|
160742
160897
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160743
160898
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160899
|
+
isGpio?: boolean | undefined;
|
|
160744
160900
|
}, {
|
|
160745
160901
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
160746
160902
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -160767,6 +160923,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160767
160923
|
isUsingPushPull?: boolean | undefined;
|
|
160768
160924
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160769
160925
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160926
|
+
isGpio?: boolean | undefined;
|
|
160770
160927
|
}>>>;
|
|
160771
160928
|
mfn: z.ZodOptional<z.ZodString>;
|
|
160772
160929
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -160860,6 +161017,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160860
161017
|
isUsingPushPull?: boolean | undefined;
|
|
160861
161018
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160862
161019
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
161020
|
+
isGpio?: boolean | undefined;
|
|
160863
161021
|
}> | undefined;
|
|
160864
161022
|
cadModel?: string | {
|
|
160865
161023
|
stlUrl: string;
|
|
@@ -161389,6 +161547,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
161389
161547
|
isUsingPushPull?: boolean | undefined;
|
|
161390
161548
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
161391
161549
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
161550
|
+
isGpio?: boolean | undefined;
|
|
161392
161551
|
}> | undefined;
|
|
161393
161552
|
cadModel?: string | {
|
|
161394
161553
|
stlUrl: string;
|
|
@@ -164926,6 +165085,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164926
165085
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164927
165086
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
164928
165087
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
165088
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
164929
165089
|
}, "strip", z.ZodTypeAny, {
|
|
164930
165090
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164931
165091
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -164952,6 +165112,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164952
165112
|
isUsingPushPull?: boolean | undefined;
|
|
164953
165113
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164954
165114
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
165115
|
+
isGpio?: boolean | undefined;
|
|
164955
165116
|
}, {
|
|
164956
165117
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164957
165118
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -164978,6 +165139,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164978
165139
|
isUsingPushPull?: boolean | undefined;
|
|
164979
165140
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164980
165141
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
165142
|
+
isGpio?: boolean | undefined;
|
|
164981
165143
|
}>>>;
|
|
164982
165144
|
mfn: z.ZodOptional<z.ZodString>;
|
|
164983
165145
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -165071,6 +165233,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
165071
165233
|
isUsingPushPull?: boolean | undefined;
|
|
165072
165234
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
165073
165235
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
165236
|
+
isGpio?: boolean | undefined;
|
|
165074
165237
|
}> | undefined;
|
|
165075
165238
|
cadModel?: string | {
|
|
165076
165239
|
stlUrl: string;
|
|
@@ -165600,6 +165763,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
165600
165763
|
isUsingPushPull?: boolean | undefined;
|
|
165601
165764
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
165602
165765
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
165766
|
+
isGpio?: boolean | undefined;
|
|
165603
165767
|
}> | undefined;
|
|
165604
165768
|
cadModel?: string | {
|
|
165605
165769
|
stlUrl: string;
|
|
@@ -169132,6 +169296,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169132
169296
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
169133
169297
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
169134
169298
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
169299
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
169135
169300
|
}, "strip", z.ZodTypeAny, {
|
|
169136
169301
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
169137
169302
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -169158,6 +169323,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169158
169323
|
isUsingPushPull?: boolean | undefined;
|
|
169159
169324
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
169160
169325
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
169326
|
+
isGpio?: boolean | undefined;
|
|
169161
169327
|
}, {
|
|
169162
169328
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
169163
169329
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -169184,6 +169350,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169184
169350
|
isUsingPushPull?: boolean | undefined;
|
|
169185
169351
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
169186
169352
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
169353
|
+
isGpio?: boolean | undefined;
|
|
169187
169354
|
}>>>;
|
|
169188
169355
|
mfn: z.ZodOptional<z.ZodString>;
|
|
169189
169356
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -169275,6 +169442,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169275
169442
|
isUsingPushPull?: boolean | undefined;
|
|
169276
169443
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
169277
169444
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
169445
|
+
isGpio?: boolean | undefined;
|
|
169278
169446
|
}> | undefined;
|
|
169279
169447
|
cadModel?: string | {
|
|
169280
169448
|
stlUrl: string;
|
|
@@ -169800,6 +169968,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169800
169968
|
isUsingPushPull?: boolean | undefined;
|
|
169801
169969
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
169802
169970
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
169971
|
+
isGpio?: boolean | undefined;
|
|
169803
169972
|
}> | undefined;
|
|
169804
169973
|
cadModel?: string | {
|
|
169805
169974
|
stlUrl: string;
|
|
@@ -173079,4 +173248,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
173079
173248
|
}
|
|
173080
173249
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
173081
173250
|
|
|
173082
|
-
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 CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, 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 MountedBoardProps, 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 PcbSx, type PcbSxSelector, type PcbSxValue, 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 PotentiometerPinLabels, 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, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, 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, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, 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 };
|
|
173251
|
+
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 CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, 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 MountedBoardProps, 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 PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, 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 PotentiometerPinLabels, 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, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, 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, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, 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 };
|