UNPKG

binary-tree-typed

Version:

Binary Tree. Javascript & Typescript Data Structure.

3 lines (2 loc) 100 B
import { BSTOptions } from './bst'; export type AVLTreeOptions<K, V, R> = BSTOptions<K, V, R> & {};