Files
2025-03-07 19:22:02 +01:00

4 lines
175 B
TypeScript

type Child = (tab: string) => string;
export declare const printBinary: (tab: string | undefined, children: [left?: null | Child, right?: null | Child]) => string;
export {};