UNPKG

tree-dump

Version:

Tree or binary tree printer, print any tree to terminal or debug window

3 lines (2 loc) 179 B
import type { PrintChild } from './types'; export declare const printBinary: (tab: string | undefined, children: [left?: null | PrintChild, right?: null | PrintChild]) => string;