@tscircuit/props 0.0.347 → 0.0.349

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -65,6 +65,7 @@ resistorProps.parse({ resistance: "10k" } as ResistorPropsInput);
65
65
  | `<testpoint />` | [`TestpointProps`](#testpointprops-testpoint) |
66
66
  | `<transistor />` | [`TransistorProps`](#transistorprops-transistor) |
67
67
  | `<via />` | [`ViaProps`](#viaprops-via) |
68
+ | `<voltageprobe />` | [`VoltageProbeProps`](#voltageprobeprops-voltageprobe) |
68
69
  | `<voltagesource />` | [`VoltageSourceProps`](#voltagesourceprops-voltagesource) |
69
70
 
70
71
  <!-- COMPONENT_TABLE_END -->
@@ -1082,6 +1083,16 @@ export interface ViaProps extends CommonLayoutProps {
1082
1083
 
1083
1084
  [Source](https://github.com/tscircuit/props/blob/main/lib/components/via.ts)
1084
1085
 
1086
+ ### VoltageProbeProps `<voltageprobe />`
1087
+
1088
+ ```ts
1089
+ export interface VoltageProbeProps extends CommonComponentProps {
1090
+ connectsTo: string | string[];
1091
+ }
1092
+ ```
1093
+
1094
+ [Source](https://github.com/tscircuit/props/blob/main/lib/components/voltageprobe.ts)
1095
+
1085
1096
  ### VoltageSourceProps `<voltagesource />`
1086
1097
 
1087
1098
  ```ts