UNPKG

binary-tree-typed

Version:

Binary Tree. Javascript & Typescript Data Structure.

3 lines (2 loc) 139 B
import type { RedBlackTreeOptions } from './red-black-tree'; export type TreeMultiMapOptions<K, V, R> = RedBlackTreeOptions<K, V, R> & {};