@tscircuit/props 0.0.268 → 0.0.270
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 +1 -0
- package/dist/index.d.ts +535 -139
- package/dist/index.js +29 -1
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +65 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -152,6 +152,7 @@ export interface BatteryProps<PinLabel extends string = string>
|
|
|
152
152
|
```ts
|
|
153
153
|
export interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
154
154
|
material?: "fr4" | "fr1";
|
|
155
|
+
/** Number of layers for the PCB */
|
|
155
156
|
layers?: 2 | 4;
|
|
156
157
|
}
|
|
157
158
|
```
|