Skip to content

Commit

Permalink
fix(overlay): no longer export internal type
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
devversion committed May 4, 2017
1 parent b4e8c7d commit e3d00ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {Scrollable} from '../scroll/scrollable';
* where top and bottom are the y-axis coordinates of the bounding rectangle and left and right are
* the x-axis coordinates.
*/
export type ElementBoundingPositions = {
type ElementBoundingPositions = {
top: number;
right: number;
bottom: number;
Expand Down

0 comments on commit e3d00ee

Please sign in to comment.