| 3 | export type TooltipPosition = 'top' | 'bottom' | 'left' | 'right'; |
| 4 | |
| 5 | export interface Position { |
| 6 | top: number; |
| 7 | left: number; |
| 8 | } |
| 9 | |
| 10 | export function calculateTooltipPosition( |
| 11 | rect: DOMRect, |
nothing calls this directly
no outgoing calls
no test coverage detected