UNPKG

object-as-tree

Version:

Visualise a Javascript/Typescript object in a tree structure

7 lines (5 loc) 135 B
/** * Converts the object/array to the string with tree structure */ declare function asTree(obj?: any): string; export { asTree };