@tscircuit/props 0.0.414 → 0.0.416
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 +2 -2
- package/dist/index.d.ts +103 -8
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +10 -0
- package/lib/components/via.ts +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1554,8 +1554,8 @@ export interface ViaProps extends CommonLayoutProps {
|
|
|
1554
1554
|
name?: string;
|
|
1555
1555
|
fromLayer: LayerRefInput;
|
|
1556
1556
|
toLayer: LayerRefInput;
|
|
1557
|
-
holeDiameter
|
|
1558
|
-
outerDiameter
|
|
1557
|
+
holeDiameter?: number | string;
|
|
1558
|
+
outerDiameter?: number | string;
|
|
1559
1559
|
connectsTo?: string | string[];
|
|
1560
1560
|
netIsAssignable?: boolean;
|
|
1561
1561
|
}
|