UNPKG

tree-dump

Version:

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

5 lines (4 loc) 117 B
export interface Printable { toString(tab?: string): string; } export type PrintChild = (tab: string) => string;