ohctechv3/.svn/pristine/7e/7e787c68565b66fc0708260c542d49713220411a.svn-base

8 lines
305 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
/**
* Find the first scrollable parent of an element.
*
* @param element Starting element
* @param firstPossible Stop at the first scrollable parent, even if it's not currently scrollable
*/
export default function scrollParent(element: HTMLElement, firstPossible?: boolean): Document | HTMLElement;