@tscircuit/capacity-autorouter 0.0.658 → 0.0.660
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 +5 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -107,6 +107,7 @@ interface SimpleRouteJson {
|
|
|
107
107
|
minTraceToPadEdgeClearance?: number;
|
|
108
108
|
obstacles: Obstacle[];
|
|
109
109
|
connections: Array<SimpleRouteConnection>;
|
|
110
|
+
differentialPairs?: Array<DifferentialPair>;
|
|
110
111
|
bounds: {
|
|
111
112
|
minX: number;
|
|
112
113
|
maxX: number;
|
|
@@ -123,6 +124,10 @@ interface SimpleRouteJson {
|
|
|
123
124
|
/** Available jumper types for routing. Defaults to ["0603"] */
|
|
124
125
|
availableJumperTypes?: JumperType[];
|
|
125
126
|
}
|
|
127
|
+
interface DifferentialPair {
|
|
128
|
+
connectionNames: [string, string];
|
|
129
|
+
lengthTolerance: 0.1;
|
|
130
|
+
}
|
|
126
131
|
interface Obstacle {
|
|
127
132
|
obstacleId?: string;
|
|
128
133
|
/** Optional source component identifier associated with this obstacle. */
|