UNPKG

@splidejs/splide

Version:

Splide is a lightweight, flexible and accessible slider/carousel. No dependencies, no Lighthouse errors.

9 lines (8 loc) 197 B
/** * Returns a DOMRect object of the provided element. * * @param target - An element. */ export function rect( target: Element ): DOMRect { return target.getBoundingClientRect(); }