UNPKG

dom-helpers

Version:
4 lines (3 loc) 207 B
type TraverseDirection = 'parentElement' | 'previousElementSibling' | 'nextElementSibling'; export default function collectElements(node: Element | null, direction: TraverseDirection): Element[]; export {};