@codecademy/gamut

68.2.268.2.3-alpha.d27b20.0
dist/PopoverContainer/types.d.ts
~dist/PopoverContainer/types.d.tsModified
+1−2
Index: package/dist/PopoverContainer/types.d.ts
===================================================================
--- package/dist/PopoverContainer/types.d.ts
+++ package/dist/PopoverContainer/types.d.ts
@@ -1,9 +1,8 @@
 import { RefObject } from 'react';
 import { WithChildrenProp } from '../utils';
 export type Alignments = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'top' | 'bottom' | 'left' | 'right';
-export interface TargetRef extends Pick<HTMLDivElement, 'getBoundingClientRect' | 'contains' | 'offsetHeight' | 'offsetWidth' | 'offsetTop' | 'offsetLeft' | 'offsetParent'> {
-}
+export type TargetRef = Pick<HTMLDivElement, 'getBoundingClientRect' | 'contains' | 'offsetHeight' | 'offsetWidth' | 'offsetTop' | 'offsetLeft' | 'offsetParent'> & HTMLElement;
 export interface PositionContext {
     width: number;
     height: number;
     top: number;