@tscircuit/capacity-autorouter 0.0.667 → 0.0.669
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 +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -134,7 +134,7 @@ interface Obstacle {
|
|
|
134
134
|
componentId?: string;
|
|
135
135
|
type: "rect";
|
|
136
136
|
layers: string[];
|
|
137
|
-
|
|
137
|
+
__zLayers?: number[];
|
|
138
138
|
center: {
|
|
139
139
|
x: number;
|
|
140
140
|
y: number;
|
|
@@ -152,7 +152,7 @@ interface SimpleRouteConnection {
|
|
|
152
152
|
name: string;
|
|
153
153
|
__rootConnectionNames?: string[];
|
|
154
154
|
isOffBoard?: boolean;
|
|
155
|
-
|
|
155
|
+
__netConnectionName?: string;
|
|
156
156
|
nominalTraceWidth?: number;
|
|
157
157
|
pointsToConnect: Array<ConnectionPoint$1>;
|
|
158
158
|
/** @deprecated DO NOT USE **/
|
|
@@ -1409,7 +1409,7 @@ type Route$2 = {
|
|
|
1409
1409
|
rootConnectionName?: string;
|
|
1410
1410
|
};
|
|
1411
1411
|
type LayeredObstacle = Obstacle & {
|
|
1412
|
-
|
|
1412
|
+
__zLayers: number[];
|
|
1413
1413
|
};
|
|
1414
1414
|
declare class SingleTransitionThroughObstacleIntraNodeSolver extends BaseSolver {
|
|
1415
1415
|
getSolverName(): string;
|