Skip to content

Commit e3d00ee

Browse files
committed
fix(overlay): no longer export internal type
* Currently the `ElementBoundingsPosition` type is only used internally by the `ConnectedPositionStrategy` and the export is unnecessary. * Doesn't make any sense to export this type to the public while it's just internally used.
1 parent b4e8c7d commit e3d00ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/core/overlay/position/connected-position-strategy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {Scrollable} from '../scroll/scrollable';
1616
* where top and bottom are the y-axis coordinates of the bounding rectangle and left and right are
1717
* the x-axis coordinates.
1818
*/
19-
export type ElementBoundingPositions = {
19+
type ElementBoundingPositions = {
2020
top: number;
2121
right: number;
2222
bottom: number;

0 commit comments

Comments
 (0)