10
0

printBinary.d.ts 179 B

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