@tscircuit/capacity-autorouter 0.0.140 → 0.0.142

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 CHANGED
@@ -68,6 +68,7 @@ interface Obstacle {
68
68
  width: number
69
69
  height: number
70
70
  connectedTo: string[] // TraceIds
71
+ offBoardConnectsTo?: string[] // TraceIds connected off-board
71
72
  }
72
73
 
73
74
  interface SimpleRouteConnection {
package/dist/index.d.ts CHANGED
@@ -33,6 +33,7 @@ interface Obstacle {
33
33
  height: number;
34
34
  connectedTo: TraceId[];
35
35
  netIsAssignable?: boolean;
36
+ offBoardConnectsTo?: TraceId[];
36
37
  }
37
38
  interface SimpleRouteConnection {
38
39
  name: string;