Files
GNX-mailEnterprise/frontend/node_modules/dom-helpers/cjs/collectElements.d.ts
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

4 lines
215 B
TypeScript

declare type TraverseDirection = 'parentElement' | 'previousElementSibling' | 'nextElementSibling';
export default function collectElements(node: Element | null, direction: TraverseDirection): Element[];
export {};