File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -284,7 +284,10 @@ export class FlexibleConnectedPositionStrategy implements PositionStrategy {
284284 // (undocumented)
285285 detach(): void ;
286286 dispose(): void ;
287- getPopoverInsertionPoint(): Element | null | {type: ' parent' , element: Element };
287+ getPopoverInsertionPoint(): Element | null | {
288+ type: ' parent' ;
289+ element: Element ;
290+ };
288291 _origin: FlexibleConnectedPositionStrategyOrigin ;
289292 positionChanges: Observable <ConnectedOverlayPositionChange >;
290293 get positions(): ConnectionPositionPair [];
@@ -311,7 +314,10 @@ export type FlexibleConnectedPositionStrategyOrigin = ElementRef | Element | (Po
311314});
312315
313316// @public
314- export type FlexibleOverlayPopoverLocation = ' global' | ' inline' | {type: ' parent' , element: Element };
317+ export type FlexibleOverlayPopoverLocation = ' global' | ' inline' | {
318+ type: ' parent' ;
319+ element: Element ;
320+ };
315321
316322// @public
317323export class FullscreenOverlayContainer extends OverlayContainer implements OnDestroy {
@@ -534,7 +540,10 @@ export interface PositionStrategy {
534540 attach(overlayRef : OverlayRef ): void ;
535541 detach? (): void ;
536542 dispose(): void ;
537- getPopoverInsertionPoint? (): Element | null | {type: ' parent' , element: Element };
543+ getPopoverInsertionPoint? (): Element | null | {
544+ type: ' parent' ;
545+ element: Element ;
546+ };
538547}
539548
540549// @public
You can’t perform that action at this time.
0 commit comments