From 54ed33f77de6844875594c89464619100ceee56a Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Thu, 4 May 2017 20:03:08 +0200 Subject: [PATCH] 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. --- src/lib/core/overlay/position/connected-position-strategy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/core/overlay/position/connected-position-strategy.ts b/src/lib/core/overlay/position/connected-position-strategy.ts index 1e9087b5a4da..a11b5fdf3eeb 100644 --- a/src/lib/core/overlay/position/connected-position-strategy.ts +++ b/src/lib/core/overlay/position/connected-position-strategy.ts @@ -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;