3 lines
164 B
TypeScript
Raw Normal View History

2024-01-29 09:26:07 +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;