UNPKG

binary-tree-typed

Version:

Binary Tree. Javascript & Typescript Data Structure.

3 lines (2 loc) 126 B
import type { AVLTreeOptions } from './avl-tree'; export type AVLTreeMultiMapOptions<K, V, R> = AVLTreeOptions<K, V, R> & {};