import { BinaryTreeNode } from '../data-structures'; import { IAbstractBinaryTree, IAbstractBinaryTreeNode } from './abstract-binary-tree'; export type IBinaryTreeNode> = IAbstractBinaryTreeNode; export type IBinaryTree> = IAbstractBinaryTree;