UNPKG

tree-dump

Version:

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

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