@tscircuit/capacity-autorouter 0.0.487 → 0.0.488
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 +10 -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
|
@@ -5143,13 +5143,20 @@ declare class AttachProjectedRectsSolver extends BaseSolver {
|
|
|
5143
5143
|
nodesWithPortPoints: PolyNodeWithPortPoints[];
|
|
5144
5144
|
equivalentAreaExpansionFactor?: number;
|
|
5145
5145
|
minProjectedRectDimension?: number;
|
|
5146
|
+
traceWidth?: number;
|
|
5147
|
+
viaDiameter?: number;
|
|
5148
|
+
obstacleMargin?: number;
|
|
5146
5149
|
};
|
|
5147
5150
|
getSolverName(): string;
|
|
5148
5151
|
outputNodes: PolyNodeWithPortPoints[];
|
|
5152
|
+
projectionAdjustmentByNodeId: Map<string, string>;
|
|
5149
5153
|
constructor(params: {
|
|
5150
5154
|
nodesWithPortPoints: PolyNodeWithPortPoints[];
|
|
5151
5155
|
equivalentAreaExpansionFactor?: number;
|
|
5152
5156
|
minProjectedRectDimension?: number;
|
|
5157
|
+
traceWidth?: number;
|
|
5158
|
+
viaDiameter?: number;
|
|
5159
|
+
obstacleMargin?: number;
|
|
5153
5160
|
});
|
|
5154
5161
|
_step(): void;
|
|
5155
5162
|
getOutput(): PolyNodeWithPortPoints[];
|
|
@@ -5157,6 +5164,9 @@ declare class AttachProjectedRectsSolver extends BaseSolver {
|
|
|
5157
5164
|
nodesWithPortPoints: PolyNodeWithPortPoints[];
|
|
5158
5165
|
equivalentAreaExpansionFactor?: number;
|
|
5159
5166
|
minProjectedRectDimension?: number;
|
|
5167
|
+
traceWidth?: number;
|
|
5168
|
+
viaDiameter?: number;
|
|
5169
|
+
obstacleMargin?: number;
|
|
5160
5170
|
}];
|
|
5161
5171
|
visualize(): GraphicsObject;
|
|
5162
5172
|
}
|