@openxmldev/linq-to-xml
Version:
LINQ to XML for TypeScript
14 lines (13 loc) • 514 B
TypeScript
/**
* @author Thomas Barnekow
* @license MIT
*/
import { XContainer, XNode } from '../internal.js';
/**
* For the elements contained in the source sequence, returns the concatenated
* sequences of child nodes of such elements in document order.
*
* @typeParam T The type of the elements contained in the source sequence.
* @returns The concatenated, flat sequence of child nodes in document order.
*/
export declare function nodes<T extends XContainer>(source: Iterable<T>): Iterable<XNode>;