blob: fc8d74dc0108bb3207e773cbe4ef45dc343d4f98 [file] [log] [blame] [edit]
/**
* Collects all next sibling elements of an element until a given selector is matched.
*
* @param node the referene node
* @param selector the selector to match
*/
export default function nextUntil(node: Element | null, selector: string): Element[];