UNPKG

red-black-tree-typed

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