@tscircuit/props 0.0.629 → 0.0.630
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
CHANGED
|
@@ -20603,6 +20603,11 @@ interface ImplicitBreakoutRegion {
|
|
|
20603
20603
|
interface ImplicitBreakoutConnectionEndpoint {
|
|
20604
20604
|
readonly regionId: string;
|
|
20605
20605
|
readonly position: ImplicitBreakoutPoint;
|
|
20606
|
+
/**
|
|
20607
|
+
* Optional PCB world-space routing destination, in millimeters, beyond this
|
|
20608
|
+
* breakout region. A solver may use it to select and align a nearer edge.
|
|
20609
|
+
*/
|
|
20610
|
+
readonly externalDestination?: ImplicitBreakoutPoint;
|
|
20606
20611
|
}
|
|
20607
20612
|
interface ImplicitBreakoutConnection {
|
|
20608
20613
|
readonly connectionId: string;
|
|
@@ -21,6 +21,11 @@ export interface ImplicitBreakoutRegion {
|
|
|
21
21
|
export interface ImplicitBreakoutConnectionEndpoint {
|
|
22
22
|
readonly regionId: string
|
|
23
23
|
readonly position: ImplicitBreakoutPoint
|
|
24
|
+
/**
|
|
25
|
+
* Optional PCB world-space routing destination, in millimeters, beyond this
|
|
26
|
+
* breakout region. A solver may use it to select and align a nearer edge.
|
|
27
|
+
*/
|
|
28
|
+
readonly externalDestination?: ImplicitBreakoutPoint
|
|
24
29
|
}
|
|
25
30
|
|
|
26
31
|
export interface ImplicitBreakoutConnection {
|