tree-cli-tool
Version:
A powerful command-line tool to display directory tree structure with various configuration options and output formats
12 lines • 471 B
TypeScript
import { TreeOptions, FileNode, TreeStats } from './types';
export { TreeBuilder } from './tree-builder';
export { createFormatter, TextFormatter, JsonFormatter, MarkdownFormatter, } from './formatters';
export { TreeOptions, FileNode, TreeStats } from './types';
export declare function generateTree(options: Partial<TreeOptions> & {
path: string;
}): Promise<{
tree: FileNode;
stats: TreeStats;
formatted: string;
}>;
//# sourceMappingURL=index.d.ts.map