printTree.d.ts 145 B

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