UNPKG

toosoon-utils

Version:
9 lines (8 loc) 315 B
/** * Find the closest parent that matches a selector * * @param {Element|null} element Target element * @param {Element|null|string} selector Selector or parent to match * @returns {Element|null} */ export declare function closest(element: Element | null, selector: Element | null | string): Element | null;