UNPKG

angular-l10n

Version:

Angular library to translate texts, dates and numbers

7 lines (6 loc) 305 B
/** * Breadth First Search (BFS) algorithm for traversing & searching tree data structure of DOM * explores the neighbor nodes first, before moving to the next level neighbors. * Time complexity: between O(1) and O(|V|^2). */ export declare function getTargetNode(rootNode: HTMLElement): HTMLElement;