@tscircuit/capacity-autorouter 0.0.121 → 0.0.123
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 +20 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1718,12 +1718,20 @@ declare class SingleSimplifiedPathSolver extends BaseSolver {
|
|
|
1718
1718
|
obstacles: Obstacle[];
|
|
1719
1719
|
connMap: ConnectivityMap;
|
|
1720
1720
|
colorMap: Record<string, string>;
|
|
1721
|
+
outline?: Array<{
|
|
1722
|
+
x: number;
|
|
1723
|
+
y: number;
|
|
1724
|
+
}>;
|
|
1721
1725
|
constructor(params: {
|
|
1722
1726
|
inputRoute: HighDensityIntraNodeRoute$1;
|
|
1723
1727
|
otherHdRoutes: HighDensityIntraNodeRoute$1[];
|
|
1724
1728
|
obstacles: Obstacle[];
|
|
1725
1729
|
connMap: ConnectivityMap;
|
|
1726
1730
|
colorMap: Record<string, string>;
|
|
1731
|
+
outline?: Array<{
|
|
1732
|
+
x: number;
|
|
1733
|
+
y: number;
|
|
1734
|
+
}>;
|
|
1727
1735
|
});
|
|
1728
1736
|
getConstructorParams(): {
|
|
1729
1737
|
inputRoute: HighDensityIntraNodeRoute$1;
|
|
@@ -1731,6 +1739,10 @@ declare class SingleSimplifiedPathSolver extends BaseSolver {
|
|
|
1731
1739
|
obstacles: Obstacle[];
|
|
1732
1740
|
connMap: Record<string, string[]>;
|
|
1733
1741
|
colorMap: Record<string, string>;
|
|
1742
|
+
outline: {
|
|
1743
|
+
x: number;
|
|
1744
|
+
y: number;
|
|
1745
|
+
}[] | undefined;
|
|
1734
1746
|
};
|
|
1735
1747
|
get simplifiedRoute(): HighDensityIntraNodeRoute$1;
|
|
1736
1748
|
isValidPath(pointsInRoute: Point$1[]): boolean;
|
|
@@ -1746,11 +1758,19 @@ declare class MultiSimplifiedPathSolver extends BaseSolver {
|
|
|
1746
1758
|
obstacles: Obstacle[];
|
|
1747
1759
|
connMap: ConnectivityMap;
|
|
1748
1760
|
colorMap: Record<string, string>;
|
|
1761
|
+
outline?: Array<{
|
|
1762
|
+
x: number;
|
|
1763
|
+
y: number;
|
|
1764
|
+
}>;
|
|
1749
1765
|
constructor(params: {
|
|
1750
1766
|
unsimplifiedHdRoutes: HighDensityIntraNodeRoute$1[];
|
|
1751
1767
|
obstacles: Obstacle[];
|
|
1752
1768
|
connMap?: ConnectivityMap;
|
|
1753
1769
|
colorMap?: Record<string, string>;
|
|
1770
|
+
outline?: Array<{
|
|
1771
|
+
x: number;
|
|
1772
|
+
y: number;
|
|
1773
|
+
}>;
|
|
1754
1774
|
});
|
|
1755
1775
|
_step(): void;
|
|
1756
1776
|
visualize(): GraphicsObject;
|