@openxmldev/linq-to-xml
Version:
LINQ to XML for TypeScript
14 lines (13 loc) • 419 B
TypeScript
/**
* @author Thomas Barnekow
* @license MIT
*/
import { XAttribute, XNode } from '../internal.js';
/**
* Removes each element contained in the source sequence from its parent
* `XContainer`.
*
* @typeParam T The type of the elements contained in the soruce sequence.
* @param source The source sequence.
*/
export declare function remove<T extends XAttribute | XNode>(source: Iterable<T>): void;