3 lines
164 B
TypeScript
Raw Permalink Normal View History

2025-02-28 19:43:11 +08:00
import { TreeNode } from './interface';
export declare function contains<R, G, I>(parent: TreeNode<R, G, I>, child: TreeNode<R, G, I> | null | undefined): boolean;