UNPKG

binary-tree-typed

Version:

Binary Tree. Javascript & Typescript Data Structure.

4 lines (3 loc) 151 B
import type { BSTOptions } from './bst'; export type RBTNColor = 'RED' | 'BLACK'; export type RedBlackTreeOptions<K, V, R> = BSTOptions<K, V, R> & {};