@tscircuit/capacity-autorouter 0.0.144 → 0.0.146
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.map +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ type TraceId = string;
|
|
|
7
7
|
interface SimpleRouteJson {
|
|
8
8
|
layerCount: number;
|
|
9
9
|
minTraceWidth: number;
|
|
10
|
+
minViaDiameter?: number;
|
|
10
11
|
obstacles: Obstacle[];
|
|
11
12
|
connections: Array<SimpleRouteConnection>;
|
|
12
13
|
bounds: {
|
|
@@ -1805,7 +1806,7 @@ declare class SingleSimplifiedPathSolver extends BaseSolver {
|
|
|
1805
1806
|
get simplifiedRoute(): HighDensityIntraNodeRoute$1;
|
|
1806
1807
|
isValidPath(pointsInRoute: Point$1[]): boolean;
|
|
1807
1808
|
_step(): void;
|
|
1808
|
-
getVisualsForNewRouteAndObstacles(): Required<GraphicsObject>;
|
|
1809
|
+
getVisualsForNewRouteAndObstacles(): GraphicsObject & Pick<Required<GraphicsObject>, "points" | "lines" | "rects" | "circles">;
|
|
1809
1810
|
}
|
|
1810
1811
|
|
|
1811
1812
|
declare class MultiSimplifiedPathSolver extends BaseSolver {
|