dom.d.ts 209 B

1234567
  1. import { Size } from '../types';
  2. /**
  3. * get the element's bounding size
  4. * @param ele dom element
  5. * @returns the element width and height
  6. */
  7. export declare function getContainerSize(ele: HTMLElement): Size;