Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,11 @@ export interface AutoroutingPhaseProps extends RoutingTolerances {
* direction unconstrained.
*/
busFanoutDirections?: Record<BusName, BusFanoutDirection>;
/**
* Padding between the union of the fanout source pads and the shared
* boundary where fanout traces terminate.
*/
fanoutBoundaryPadding?: FanoutBoundaryPadding;
}
```

Expand Down Expand Up @@ -422,6 +427,12 @@ export interface BreakoutProps extends Omit<
paddingRight?: Distance;
paddingTop?: Distance;
paddingBottom?: Distance;
/**
* Padding between the union of the fanout source pads and the shared
* boundary where fanout traces terminate. This is independent of the
* breakout group's layout padding.
*/
fanoutBoundaryPadding?: FanoutBoundaryPadding;
}
```

Expand Down
Loading