typescript-algorithms-and-datastructures
Version:
Useful algorithms and Data structures written in typescript.
12 lines (11 loc) • 443 B
TypeScript
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;