@tscircuit/capacity-autorouter 0.0.203 → 0.0.205
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 -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
|
@@ -9,6 +9,8 @@ type TraceId = string;
|
|
|
9
9
|
type NetId = string;
|
|
10
10
|
type PointId = string;
|
|
11
11
|
type OffBoardConnectionId = string;
|
|
12
|
+
type ObstacleId = string;
|
|
13
|
+
type RootConnectionName = string;
|
|
12
14
|
type SingleLayerConnectionPoint = {
|
|
13
15
|
x: number;
|
|
14
16
|
y: number;
|
|
@@ -2795,7 +2797,6 @@ type HighDensityRoute = HighDensityIntraNodeRoute;
|
|
|
2795
2797
|
declare class HighDensityRouteSpatialIndex {
|
|
2796
2798
|
private segmentBuckets;
|
|
2797
2799
|
private viaBuckets;
|
|
2798
|
-
private routes;
|
|
2799
2800
|
private CELL_SIZE;
|
|
2800
2801
|
constructor(routes: HighDensityRoute[], cellSize?: number);
|
|
2801
2802
|
/**
|
|
@@ -3108,6 +3109,7 @@ declare class AssignableAutoroutingPipeline2 extends BaseSolver {
|
|
|
3108
3109
|
*/
|
|
3109
3110
|
preview(): GraphicsObject;
|
|
3110
3111
|
_getOutputHdRoutes(): HighDensityRoute$1[];
|
|
3112
|
+
getConnectedOffboardObstacles(): Record<ObstacleId, RootConnectionName>;
|
|
3111
3113
|
/**
|
|
3112
3114
|
* Returns the SimpleRouteJson with routes converted to SimplifiedPcbTraces
|
|
3113
3115
|
*/
|