UNPKG

sonic-forest

Version:

High-performance (binary) tree and sorted map implementation (AVL, Splay, Radix, Red-Black)

3 lines (2 loc) 163 B
import type { IRbTreeNode, RbHeadlessNode } from '../types'; export declare const print: (node: undefined | RbHeadlessNode | IRbTreeNode, tab?: string) => string;