@tscircuit/props 0.0.649 → 0.0.651
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 +4 -0
- package/dist/index.d.ts +1826 -0
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -1
- package/lib/common/pinAttributeMap.ts +30 -0
- package/lib/components/board.ts +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -447,6 +447,10 @@ export interface BoardProps extends Omit<
|
|
|
447
447
|
* to false.
|
|
448
448
|
*/
|
|
449
449
|
automaticPoursEnabled?: boolean;
|
|
450
|
+
/** Whether to stitch copper pours on the same net across layers with vias. Defaults to false. */
|
|
451
|
+
enableViaStitching?: boolean;
|
|
452
|
+
/** Positive center-to-center stitching via spacing in millimeters or a unit string. Omitted uses the solver default. Does not enable stitching by itself. */
|
|
453
|
+
viaStitchPitch?: Distance;
|
|
450
454
|
/** Whether this board should be omitted from the schematic view */
|
|
451
455
|
schematicDisabled?: boolean;
|
|
452
456
|
}
|