UNPKG

data-structure-typed

Version:
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> & {};