node-ejs-renderer/node_modules/@jsonjoy.com/util/lib/print/printTree.d.ts

4 lines
146 B
TypeScript
Raw Normal View History

2024-06-09 13:55:01 -04:00
type Child = (tab: string) => string;
export declare const printTree: (tab: string | undefined, children: (Child | null)[]) => string;
export {};