You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
217 B

2 months ago
  1. import type { PositioningStrategy } from "../types";
  2. export default function getViewportRect(element: Element, strategy: PositioningStrategy): {
  3. width: number;
  4. height: number;
  5. x: number;
  6. y: number;
  7. };