printTree.d.ts 146 B

123
  1. type Child = (tab: string) => string;
  2. export declare const printTree: (tab: string | undefined, children: (Child | null)[]) => string;
  3. export {};