UNPKG

aico-pack

Version:

A tool to pack repository contents to single file for AI consumption

9 lines 418 B
export interface TreeNode { name: string; children: TreeNode[]; isDirectory: boolean; } export declare const generateFileTree: (files: string[], emptyDirPaths?: string[]) => TreeNode; export declare const treeToString: (node: TreeNode, prefix?: string) => string; export declare const generateTreeString: (files: string[], emptyDirPaths?: string[]) => string; //# sourceMappingURL=fileTreeGenerate.d.ts.map