mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 22:30:56 +00:00
7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
/**
|
|
* Collects all child elements of an element.
|
|
*
|
|
* @param node the element
|
|
*/
|
|
export default function childElements(node: Element | null): Element[];
|