Files
chinese-family-tree-2/node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/closest.d.ts
T
freedakgmail 43c8389705 0.0.0.1
2025-11-22 19:52:55 +08:00

9 lines
318 B
TypeScript

/**
* Returns the closest parent element that matches a given selector.
*
* @param node the reference element
* @param selector the selector to match
* @param stopAt stop traversing when this element is found
*/
export default function closest(node: Element, selector: string, stopAt?: Element): Element | null;