UNPKG

projen

Version:

CDK for software projects

9 lines (8 loc) 365 B
import { FilterResult, NodeIterator, Node, TreeWalker } from "../dom/interfaces"; /** * Applies the filter to the given node and returns the result. * * @param traverser - the `NodeIterator` or `TreeWalker` instance * @param node - the node to filter */ export declare function traversal_filter(traverser: NodeIterator | TreeWalker, node: Node): FilterResult;