UNPKG

typescript-algorithms-and-datastructures

Version:
12 lines (11 loc) 443 B
import * as BTImplementatio from "./BinaryTree"; import { BinaryTreeNode } from "./BinaryTreeNode"; import RedBlackTree from "./RedBlackTree"; import RedBlackTreeNode from "./RedBlackTreeNode"; declare const BinaryTree: { BinaryTree: typeof BTImplementatio.BinaryTree; BinaryTreeNode: typeof BinaryTreeNode; RedBlackTree: typeof RedBlackTree; RedBlackTreeNode: typeof RedBlackTreeNode; }; export default BinaryTree;