@tscircuit/capacity-autorouter 0.0.192 → 0.0.193
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 +2 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -805,7 +805,7 @@ declare class MultipleHighDensityRouteStitchSolver extends BaseSolver {
|
|
|
805
805
|
colorMap: Record<string, string>;
|
|
806
806
|
defaultTraceThickness: number;
|
|
807
807
|
defaultViaDiameter: number;
|
|
808
|
-
constructor(
|
|
808
|
+
constructor(params: {
|
|
809
809
|
connections: SimpleRouteConnection[];
|
|
810
810
|
hdRoutes: HighDensityIntraNodeRoute$1[];
|
|
811
811
|
colorMap?: Record<string, string>;
|
|
@@ -3005,6 +3005,7 @@ type Point2D = {
|
|
|
3005
3005
|
};
|
|
3006
3006
|
type HighDensityIntraNodeRoute = {
|
|
3007
3007
|
connectionName: string;
|
|
3008
|
+
rootConnectionName?: string;
|
|
3008
3009
|
traceThickness: number;
|
|
3009
3010
|
viaDiameter: number;
|
|
3010
3011
|
route: Array<{
|