UNPKG

min-heap-typed

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